/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", Poppins, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #424242;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    display: block;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cyan {
    background-color: #26DFDB;
    color: white;
    box-shadow: 0 4px 12px rgba(38, 223, 219, 0.3);
}

.btn-cyan:hover {
    background-color: #1fc5c1;
    box-shadow: 0 6px 16px rgba(38, 223, 219, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
}

.btn-orange {
    background-color: #F99E29;
    color: white;
    box-shadow: 0 4px 12px rgba(249, 158, 41, 0.3);
}

.btn-orange:hover {
    background-color: #e68d1a;
    box-shadow: 0 6px 16px rgba(249, 158, 41, 0.4);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('images/shutterstock_2503736717_1.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    color: white;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.hero-input {
    flex: 1;
    padding: 15px 24px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    outline: none;
}

.hero-submit {
    background-color: #26DFDB;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-submit:hover {
    background-color: #1fc5c1;
    transform: scale(1.1);
}

/* How it Works */
.how-it-works {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #26DFDB;
    font-weight: 300;
    margin-bottom: 60px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.step {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: block;
}

.step-arrow {
    position: absolute;
    top: 50px;
    right: -40px;
    width: 30px;
    height: 30px;
}

.step:last-child .step-arrow {
    display: none;
}

.step-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Experts Section */
.experts-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.experts-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.experts-image {
    text-align: center;
}

.mascot {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(38, 223, 219, 0.2);
}

.experts-title {
    font-size: 32px;
    color: #26DFDB;
    margin-bottom: 20px;
    font-weight: 300;
}

.experts-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Partnership Section */
.partnership-section {
    padding: 80px 0;
    background-color: white;
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.partnership-title {
    font-size: 32px;
    color: #26DFDB;
    margin-bottom: 20px;
    font-weight: 300;
}

.partnership-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.partnership-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-image: url('images/shutterstock_2523230491_1.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    font-weight: 300;
}

.cta-text {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #D4F5F4 0%, #26DFDB 100%);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.4;
}

.footer-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
}

.footer-input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    font-size: 14px;
    outline: none;
}

.footer-submit {
    background-color: #26DFDB;
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-submit:hover {
    background-color: #1fc5c1;
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    align-items: center;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: #26DFDB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #1fc5c1;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(26, 26, 46, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #1a1a2e;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #26DFDB;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-buttons {
        gap: 8px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-form {
        flex-direction: column;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .experts-grid,
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .partnership-grid {
        grid-template-rows: auto auto;
    }
    
    .partnership-content {
        order: 2;
    }
    
    .partnership-image {
        order: 1;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .experts-title,
    .partnership-title {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}