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

:root {
    --data-blue: #1E40AF;
    --behavioral-green: #10B981;
    --urban-gray: #6B7280;
    --interface-white: #F8FAFC;
    --accent-orange: #EA580C;
    --dark-bg: #0F172A;
    --card-bg: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--urban-gray);
    background-color: var(--interface-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    color: var(--dark-bg);
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--behavioral-green);
    text-decoration: underline;
}

.btn-accept {
    background: var(--behavioral-green);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: var(--data-blue);
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--data-blue);
}

.logo-img {
    width: 40px;
    height: 40px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--urban-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--behavioral-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--data-blue);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--data-blue) 0%, #1E3A8A 100%);
    color: white;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInRight 1s ease;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-plan, .btn-submit {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Urbanist', sans-serif;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
}

.btn-primary:hover {
    background: #DC2626;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.4);
}

.btn-secondary {
    background: var(--behavioral-green);
    color: white;
}

.btn-secondary:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-bg);
    font-family: 'Urbanist', sans-serif;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--urban-gray);
    margin-bottom: 60px;
}

/* Analytics Section */
.analytics-section {
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, var(--data-blue), #1E3A8A);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transition: all 0.6s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.3);
}

.stat-card:hover::before {
    top: -100%;
    right: -100%;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
}

.stat-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Patterns Section */
.patterns-section {
    background: var(--interface-white);
}

.patterns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.pattern-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.pattern-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.pattern-content {
    padding: 30px;
}

.pattern-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.pattern-content p {
    margin-bottom: 20px;
    color: var(--urban-gray);
}

.pattern-bar {
    width: 100%;
    height: 8px;
    background: #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
}

.pattern-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--behavioral-green), var(--accent-orange));
    border-radius: 10px;
    transition: width 1s ease;
}

/* Plans Section */
.plans-section {
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
}

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

.plan-card.featured {
    border-color: var(--accent-orange);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

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

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.plan-description {
    color: var(--urban-gray);
    font-size: 15px;
}

.plan-price {
    text-align: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 20px;
    color: var(--urban-gray);
}

.amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--data-blue);
    font-family: 'Urbanist', sans-serif;
}

.period {
    font-size: 18px;
    color: var(--urban-gray);
}

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

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features svg {
    width: 24px;
    height: 24px;
    color: var(--behavioral-green);
    flex-shrink: 0;
}

.btn-plan {
    width: 100%;
    background: var(--data-blue);
    color: white;
    text-align: center;
}

.btn-plan:hover {
    background: #1E3A8A;
    transform: translateY(-2px);
}

/* Simulator Section */
.simulator-section {
    background: white;
}

.simulator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.simulator-controls {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.control-group {
    background: var(--interface-white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.control-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-bg);
    font-size: 16px;
}

.control-group input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #E5E7EB;
    outline: none;
    -webkit-appearance: none;
}

.control-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--behavioral-green);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.control-group input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--behavioral-green);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    border: none;
}

.control-value {
    display: inline-block;
    margin-left: 15px;
    font-weight: 700;
    color: var(--data-blue);
    font-size: 18px;
}

.simulator-result {
    background: linear-gradient(135deg, var(--data-blue), #1E3A8A);
    padding: 50px;
    border-radius: 24px;
    color: white;
    position: sticky;
    top: 100px;
}

.result-visual {
    position: relative;
    margin-bottom: 40px;
}

.result-circle {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    display: block;
}

.result-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.result-text h3 {
    font-size: 64px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.result-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.result-recommendation h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.result-recommendation #recommendedPlan {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.recommendation-note {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* AI Section */
.ai-section {
    background: var(--interface-white);
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.ai-feature {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.ai-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.ai-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--behavioral-green), #059669);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.ai-feature h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.ai-feature p {
    color: var(--urban-gray);
    line-height: 1.7;
}

/* Comparison Section */
.comparison-section {
    background: white;
}

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

.comparison-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.comparison-content h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--dark-bg);
}

.comparison-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.comparison-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    font-size: 18px;
}

.comparison-benefits svg {
    width: 28px;
    height: 28px;
    color: var(--behavioral-green);
    flex-shrink: 0;
}

/* Location Section */
.location-section {
    background: var(--interface-white);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.location-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.location-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.location-info {
    padding: 30px;
}

.location-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.signal-strength {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
}

.signal-bar {
    width: 8px;
    background: #E5E7EB;
    border-radius: 4px;
}

.signal-bar:nth-child(1) { height: 15px; }
.signal-bar:nth-child(2) { height: 20px; }
.signal-bar:nth-child(3) { height: 25px; }
.signal-bar:nth-child(4) { height: 30px; }
.signal-bar:nth-child(5) { height: 35px; }

.signal-bar.active {
    background: var(--behavioral-green);
}

.location-info p {
    color: var(--urban-gray);
    line-height: 1.7;
}

/* Features Section */
.features-section {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
}

.feature-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.feature-item p {
    color: var(--urban-gray);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    background: var(--interface-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.contact-info > p {
    font-size: 18px;
    color: var(--urban-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item svg {
    width: 40px;
    height: 40px;
    color: var(--data-blue);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-bg);
}

.contact-item p {
    color: var(--urban-gray);
    line-height: 1.6;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-bg);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--data-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    background: var(--accent-orange);
    color: white;
    width: 100%;
    font-size: 18px;
}

.btn-submit:hover {
    background: #DC2626;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 45px;
    height: 45px;
}

.footer-logo span {
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: 24px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--behavioral-green);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .simulator-wrapper,
    .comparison-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .stats-grid,
    .patterns-grid,
    .ai-grid,
    .location-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .amount {
        font-size: 42px;
    }
    
    .simulator-result {
        padding: 30px;
    }
    
    .result-text h3 {
        font-size: 48px;
    }
}

/* Minimum width support */
@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
}
