:root {
    --primary-teal: rgb(10, 50, 53);
    --accent-pink: rgb(239, 80, 155);
    --light-teal: rgb(20, 80, 85);
    --success-green: rgb(34, 197, 94);
    --background-light: rgb(248, 250, 252);
    --text-dark: rgb(15, 23, 42);
    --text-light: rgb(100, 116, 139);
    --white: rgb(255, 255, 255);
    --border-light: rgb(226, 232, 240);
}

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

body {
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.header-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 1200px;
}

.navbar {
    background-color: var(--white);
    border-radius: 50px;
    padding: 15px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-teal);
}

.navbar-brand .logo i {
    color: var(--accent-pink);
    font-size: 24px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-pink);
    background-color: rgba(239, 80, 155, 0.1);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero-logo {
    font-size: 80px;
    color: var(--accent-pink);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    background-color: var(--accent-pink);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn:hover {
    background-color: rgba(239, 80, 155, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(239, 80, 155, 0.3);
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-pink), rgba(239, 80, 155, 0.3));
}

.decoration-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    opacity: 0.3;
}

.decoration-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    opacity: 0.2;
}

.intro-section,
.features-section,
.updates-section,
.impact-section {
    padding: 100px 0;
}

.intro-section {
    background-color: var(--background-light);
}

.intro-section h2,
.features-section h2,
.updates-section h2,
.impact-section h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.intro-section p,
.features-section p,
.updates-section p,
.impact-section p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--accent-pink);
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background-color: rgba(239, 80, 155, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 80, 155, 0.3);
}

.btn-secondary {
    background-color: var(--primary-teal);
    border: none;
    color: var(--white);
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background-color: var(--light-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 50, 53, 0.3);
}

.intro-image,
.feature-image,
.updates-image,
.impact-image,
.data-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: 400px;
    position: relative;
    transition: transform 0.3s ease;
}

.intro-image:hover,
.feature-image:hover,
.updates-image:hover,
.impact-image:hover,
.data-image:hover {
    transform: scale(1.05);
}

.intro-image {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 50%, var(--accent-pink) 100%);
}

.feature-image {
    background: linear-gradient(45deg, var(--accent-pink) 0%, rgba(239, 80, 155, 0.8) 50%, var(--primary-teal) 100%);
}

.updates-image {
    background: linear-gradient(225deg, var(--light-teal) 0%, var(--primary-teal) 50%, var(--accent-pink) 100%);
}

.impact-image {
    background: linear-gradient(315deg, var(--success-green) 0%, var(--primary-teal) 50%, var(--accent-pink) 100%);
}

.data-image {
    background: linear-gradient(180deg, var(--accent-pink) 0%, rgba(239, 80, 155, 0.8) 50%, var(--primary-teal) 100%);
}

.intro-image::before,
.feature-image::before,
.updates-image::before,
.impact-image::before,
.data-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.intro-image img,
.feature-image img,
.updates-image img,
.impact-image img,
.data-image img {
    display: none;
}

.data-section {
    background-color: var(--accent-pink);
    color: var(--white);
    padding: 100px 0;
}

.data-section h2 {
    color: var(--white);
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-teal);
    margin-bottom: 10px;
    display: block;
}

.data-section .section-label {
    color: rgba(255, 255, 255, 0.8);
}

.impact-section {
    background-color: var(--success-green);
    color: var(--white);
}

.impact-section h2,
.impact-section p {
    color: var(--white);
}

.impact-section .section-label {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-hero {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    color: var(--white);
    padding: 150px 0 100px;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-plans {
    padding: 100px 0;
    background-color: var(--background-light);
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid var(--accent-pink);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-pink);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price {
    margin-bottom: 30px;
}

.price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
}

.price .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-pink);
}

.price .period {
    font-size: 14px;
    color: var(--text-light);
    display: block;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--success-green);
    font-size: 16px;
}

.btn-outline-primary {
    border: 2px solid var(--accent-pink);
    color: var(--accent-pink);
    background: transparent;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--accent-pink);
    color: var(--white);
    transform: translateY(-2px);
}

.features-comparison {
    padding: 100px 0;
}

.comparison-table {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 20px;
    font-weight: 600;
    border: none;
}

.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.price-small {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    color: var(--white);
    padding: 150px 0 100px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-form-section {
    padding: 100px 0;
    background-color: var(--background-light);
}

.contact-form-container {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid var(--border-light);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 0.2rem rgba(239, 80, 155, 0.25);
}

.thank-you-message {
    text-align: center;
    padding: 50px;
}

.thank-you-message i {
    font-size: 60px;
    color: var(--success-green);
    margin-bottom: 20px;
}

.thank-you-message h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info-section {
    padding: 100px 0;
}

.contact-info-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-pink), rgba(239, 80, 155, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.ceo-section {
    padding: 100px 0;
    background-color: var(--background-light);
}

.ceo-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.ceo-section h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-pink);
}

.ceo-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.legal-hero {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    color: var(--white);
    padding: 150px 0 100px;
    text-align: center;
}

.legal-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.legal-content {
    padding: 100px 0;
}

.legal-document {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.legal-document h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-document ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-document li {
    margin-bottom: 8px;
}

.contact-details {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
}

.footer {
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-brand .logo i {
    color: var(--accent-pink);
    font-size: 24px;
}

.footer h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-pink);
}

.contact-info p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info a {
    color: var(--accent-pink);
    text-decoration: none;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0 20px;
}

@media (max-width: 768px) {
    .header-container {
        width: calc(100% - 20px);
        top: 10px;
    }
    
    .navbar {
        padding: 10px 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-logo {
        font-size: 60px;
    }
    
    .pricing-hero h1,
    .contact-hero h1,
    .legal-hero h1 {
        font-size: 36px;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 30px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .legal-document {
        padding: 30px 20px;
    }
    
    .intro-section,
    .features-section,
    .updates-section,
    .impact-section,
    .pricing-plans,
    .features-comparison,
    .cta-section,
    .contact-form-section,
    .contact-info-section,
    .ceo-section,
    .legal-content {
        padding: 60px 0;
    }
    
    .data-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .pricing-hero h1,
    .contact-hero h1,
    .legal-hero h1 {
        font-size: 28px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
}
