/* Terms and Conditions Page Styles */
:root {
    --primary-color: #22919a;
    --text-color: #414146;
    --border-color: #e6e6e6;
    --background-light: #f7f7f7;
    --sidebar-width: 280px;
}

body {
    font-family: 'Lexend', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.terms-container {
    display: flex;
    min-height: calc(100vh - 50px); /* Adjust based on your navbar height */
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 80px;
}

/* Sidebar Styles */
.terms-sidebar {
    width: var(--sidebar-width);
    padding: 20px;
    background-color: var(--background-light);
    border-right: 1px solid var(--border-color);
    position: sticky;
    top: 60px; /* Adjust based on your navbar height */
    height: calc(100vh - 60px);
    overflow-y: auto;
}

.sidebar-header h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 10px;
}

.sidebar-nav a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sidebar-nav a:hover {
    background-color: rgba(20, 190, 240, 0.1);
    color: var(--primary-color);
}

/* Main Content Styles */
.terms-main-content {
    flex: 1;
    padding: 0 40px;
    margin-top: 50px;
}

.terms-header {
    margin-bottom: 40px;
}

.terms-header h1 {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.last-updated {
    color: #666;
    font-size: 0.9rem;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h2 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}
.terms-section p {
    font-size: 14px;
}

.terms-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.terms-card h3 {
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 15px;
}

.terms-card ul {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
}

.terms-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.terms-card li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Contact Information Styles */
.contact-info {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: 8px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.contact-hours {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* CTA Button Styles */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0ea8d9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-container {
        flex-direction: column;
        padding: 0px 10px;
    }

    .terms-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        padding: 0px;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .terms-main-content {
        padding: 20px 0;
    }
} 