/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* User Status Bar */
#user-status-bar {
    background: #f8f9fa;
    padding: 10px 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    border-bottom: 1px solid #dee2e6;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 50px;
    z-index: 999;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #8a728c;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #6f5a70;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #8a728c 0%, #6f5a70 100%);
    color: white;
    padding: 80px 20px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #8a728c;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* Feature Images */
.feature-images {
    padding: 60px 20px;
    background: white;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.image-grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Content Blocks */
.who-we-are,
.get-started {
    padding: 80px 20px;
}

.who-we-are {
    background: white;
}

.get-started {
    background: #f8f9fa;
}

.content-block {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-block.reverse {
    direction: rtl;
}

.content-block.reverse > * {
    direction: ltr;
}

.text-content h3 {
    font-size: 36px;
    color: #8a728c;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Three Steps Section */
.three-steps {
    padding: 80px 20px;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.step-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.step-card h6 {
    font-size: 20px;
    color: #8a728c;
    margin-bottom: 15px;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* Join Form Section */
.join-form {
    padding: 60px 20px;
    background: linear-gradient(135deg, #8a728c 0%, #6f5a70 100%);
    color: white;
    text-align: center;
}

.join-form h4 {
    font-size: 32px;
    margin-bottom: 30px;
}

.join-form form {
    max-width: 500px;
    margin: 0 auto 20px;
    display: flex;
    gap: 15px;
}

.join-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
}

.join-form button {
    padding: 15px 30px;
    background: white;
    color: #8a728c;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.join-form button:hover {
    transform: scale(1.05);
}

.tagline {
    font-size: 18px;
    opacity: 0.9;
}

/* Reviews Section */
.reviews {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.reviews h3 {
    font-size: 36px;
    color: #8a728c;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
}

.review-text {
    color: #555;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h6 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.reviewer-info p {
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.stars {
    color: #ffc107;
    font-size: 14px;
}

/* Note Section */
.note-section {
    padding: 40px 20px;
    background: #fff3cd;
    text-align: center;
}

.note-section h5 {
    font-size: 24px;
    color: #856404;
    margin-bottom: 10px;
}

.note-section p {
    color: #856404;
    font-size: 16px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-contact h6 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #8a728c;
}

.footer-contact p {
    margin-bottom: 20px;
}

.footer-form form {
    display: flex;
    gap: 15px;
}

.footer-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
}

.footer-form button {
    padding: 12px 25px;
    background: #8a728c;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.footer-form button:hover {
    background: #6f5a70;
}

/* Footer Legal Links - ADDED THIS SECTION */
.footer-legal {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #555;
    text-align: center;
}

.footer-legal p {
    margin: 0;
    font-size: 14px;
}

.footer-legal a {
    color: #8a728c;
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 5px;
}

.footer-legal a:hover {
    color: #fff;
    text-decoration: underline;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    color: #999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container,
    .content-block,
    .steps-grid,
    .reviews-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .content-block.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .join-form form,
    .footer-form form {
        flex-direction: column;
    }

    .steps-grid {
        gap: 30px;
    }
    
    .footer-legal a {
        display: inline-block;
        margin: 5px 10px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}