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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

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

.nav-logo {
    font-size: 1.8em;
    font-weight: 700;
    color: #667eea;
    text-decoration: none;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1em;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #667eea;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s;
}

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

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 0.9em;
    }
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 40px 40px 40px;
}

/* Top Section - Side by Side */
.top-section {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 40px;
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Booking CTA - Top Left */
.booking-cta-top {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.top-cta-button {
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 35px;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    text-align: center;
}

.top-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.booking-info-inline {
    font-size: 0.9em;
    line-height: 1.5;
    color: #333;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 0;
}

/* Consultation Hours - Top Right */
.consultation-hours-top {
    background: rgba(255, 255, 255, 0.98);
    color: #333;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.consultation-hours-top h3 {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #667eea;
}

.consultation-hours-top p {
    font-size: 0.85em;
    margin: 5px 0;
    color: #333;
}

.consultation-hours-top .note {
    font-style: italic;
    color: #667eea;
    font-weight: 600;
    margin-top: 8px;
    font-size: 0.8em;
}

/* AI Newsfeed Section - Right Column */
.ai-newsfeed-section {
    background: rgba(255, 255, 255, 0.98);
    color: #333;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.ai-newsfeed-section h2 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #667eea;
    text-align: center;
    font-weight: 700;
}

.newsfeed-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.newsfeed-list li {
    margin-bottom: 12px;
}

.newsfeed-list a {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 12px 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.9em;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.newsfeed-list a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

/* Feature Buttons */
.feature-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.feature-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 30px;
    font-size: 1.1em;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.feature-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.feature-btn .icon {
    font-size: 1.3em;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    color: white;
    width: 100%;
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
    margin-bottom: 60px;
}

/* Left Side - Booking Section */
.booking-section {
    text-align: left;
}

.booking-section .logo {
    margin-bottom: 30px;
}

.booking-section .logo h1 {
    font-size: 3em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.booking-cta-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.main-cta-button {
    display: block;
    background: white;
    color: #667eea;
    padding: 25px 40px;
    font-size: 1.5em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 15px;
    margin-bottom: 25px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.main-cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: #f8f9fa;
}

.booking-info {
    font-size: 1.15em;
    line-height: 1.8;
    color: white;
    opacity: 0.95;
    text-align: left;
}

/* Counselor Introduction */
.counselor-intro {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.advisor-header {
    margin-bottom: 18px;
}

.advisor-header h3 {
    font-size: 1.5em;
    color: white;
    margin: 0;
}

.advisor-header h3 .advisor-name {
    color: #ffd700;
    margin-left: 8px;
}

.counselor-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.advisor-photo-section {
    display: flex;
    gap: 20px;
    align-items: center;
}

.advisor-photo {
    flex-shrink: 0;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.advisor-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #ffd700;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.advisor-text {
    width: 100%;
}

.counselor-details h4 {
    font-size: 1.3em;
    margin-bottom: 12px;
    color: #ffd700;
    text-align: left;
}

.counselor-bio {
    font-size: 0.95em;
    line-height: 1.6;
    color: white;
    opacity: 0.9;
    margin-bottom: 18px;
    text-align: left;
}

.social-link {
    display: inline-block;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s;
    text-align: center;
    min-width: 120px;
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.twitter {
    background: #000000;
}

.social-link:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.linkedin-link {
    display: inline-block;
    background: #0077b5;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s;
}

.linkedin-link:hover {
    background: #005582;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

/* Contact Section */
.contact-section {
    max-width: 1000px;
    margin: 40px 0 0 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.contact-section h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #667eea;
}

.contact-info {
    color: #333;
}

.contact-name {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

.contact-email {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.contact-email a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.contact-email a:hover {
    text-decoration: underline;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.contact-social-link {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-social-link:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.links-frame {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #667eea;
    margin-top: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.links-frame h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #667eea;
}

.links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.links-list a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 600;
}

.links-list a:hover {
    background: #667eea;
    color: white;
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

/* Right Side - Info Content */
.info-content {
    text-align: left;
}

/* Info Section on Right */
.info-section-right {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-section-right h2 {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: white;
}

.steps-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.steps-right .step {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 10px;
}

.steps-right .step-number {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    background: white;
    color: #667eea;
    border-radius: 50%;
    font-size: 0.9em;
    font-weight: bold;
    margin-right: 10px;
    text-align: center;
}

.steps-right .step h4 {
    display: inline;
    font-size: 1em;
    color: white;
}

.steps-right .step p {
    margin-top: 8px;
    margin-left: 44px;
    color: white;
    opacity: 0.9;
    font-size: 0.9em;
}

.info-content .features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
}

.info-content .feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-content .feature:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.info-content .icon {
    font-size: 2em;
    display: block;
    margin-bottom: 10px;
}

.info-content .feature h3 {
    font-size: 1.2em;
    margin-bottom: 8px;
    color: white;
}

.info-content .feature p {
    font-size: 0.95em;
    opacity: 0.9;
    color: white;
    line-height: 1.5;
}

/* Info Section on Left */
.info-section-left {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-section-left h2 {
    font-size: 1.8em;
    margin-bottom: 25px;
    color: white;
}

.steps-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.steps-left .step {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
}

.steps-left .step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: white;
    color: #667eea;
    border-radius: 50%;
    font-size: 1.3em;
    font-weight: bold;
    margin-right: 15px;
    text-align: center;
}

.steps-left .step h4 {
    display: inline;
    font-size: 1.2em;
    color: white;
}

.steps-left .step p {
    margin-top: 10px;
    margin-left: 55px;
    color: white;
    opacity: 0.9;
}

/* Features Mobile - Hidden on desktop */
.features-mobile {
    display: none;
}

/* How It Works Section */
.how-it-works-section {
    background: rgba(255, 255, 255, 0.98);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    max-width: 1000px;
    margin: 40px auto 40px auto;
    color: #333;
}

.how-it-works-section h2 {
    font-size: 1.8em;
    margin-bottom: 25px;
    color: #667eea;
    text-align: center;
    font-weight: 700;
}

.how-it-works-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-item {
    padding: 15px 20px;
    background: rgba(102, 126, 234, 0.05);
    border-left: 4px solid #667eea;
    border-radius: 8px;
    line-height: 1.6;
}

.step-item p {
    margin: 0;
    color: #333;
    font-size: 1em;
}

.step-item a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.step-item a:hover {
    text-decoration: underline;
}

.note-highlight {
    background: rgba(255, 193, 7, 0.1);
    border-left-color: #ffc107;
}

.note-highlight p {
    color: #d84315;
}

.info-content .tagline {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-content .subtitle {
    font-size: 1.3em;
    opacity: 0.9;
    line-height: 1.6;
}

/* Latest Insights Preview Section */
.insights-preview {
    max-width: 800px;
    margin: 60px auto;
    padding: 50px 30px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    color: white;
}

.insights-preview h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.insights-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.insights-cta {
    margin-top: 30px;
}

.insights-button {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.insights-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .top-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .booking-cta-top,
    .consultation-hours-top {
        padding: 15px 20px;
    }
    
    .top-cta-button {
        font-size: 1.2em;
        padding: 15px 25px;
    }
    
    .consultation-hours-top h3 {
        font-size: 1.2em;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .booking-section,
    .info-content {
        text-align: center;
    }
    
    .booking-info {
        text-align: center;
    }
    
    .counselor-intro h3,
    .counselor-details h4,
    .counselor-bio,
    .info-section-left,
    .info-section-left h2 {
        text-align: center;
    }
    
    .business-hours-right {
        display: none;
    }
    
    .steps-left .step {
        text-align: center;
    }
    
    .steps-left .step h4,
    .steps-left .step p {
        display: block;
        margin-left: 0;
    }
    
    .steps-left .step-number {
        display: block;
        margin: 0 auto 10px;
    }
    
    .linkedin-link {
        display: block;
        text-align: center;
    }
    
    .booking-section .logo h1 {
        font-size: 2.5em;
    }
    
    .main-cta-button {
        font-size: 1.3em;
        padding: 20px 30px;
    }
    
    /* Show features in mobile layout */
    .info-content .features {
        display: none !important;
    }
    
    .features-mobile {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
        text-align: center;
    }
}

.logo {
    margin-bottom: 10px;
}

.logo h1 {
    font-size: 4em;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.8em;
    margin-bottom: 15px;
    opacity: 0.95;
    font-weight: 600;
}

.subtitle {
    font-size: 1.2em;
    margin-bottom: 50px;
    opacity: 0.85;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
    text-align: center;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.icon {
    font-size: 3em;
    display: block;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.feature p {
    opacity: 0.9;
    font-size: 1.05em;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 20px 50px;
    font-size: 1.3em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    margin: 30px 0 50px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

/* Info Section */
.info-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    border-radius: 20px;
    margin: 50px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.info-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: white;
    color: #667eea;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.step p {
    opacity: 0.9;
}

/* Business Hours */
.business-hours {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 30px;
    border-radius: 15px;
    margin-top: 50px;
 

.business-hours .note {
    font-style: italic;
    color: #667eea;
    font-weight: 600;
    margin-top: 15px;
}   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 1s both;
}

.business-hours h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #667eea;
}

.business-hours p {
    font-size: 1.1em;
    margin: 8px 0;
}

/* Footer */
footer {
    background: #2d3436;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    opacity: 0.8;
    margin: 5px 0;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
    .logo h1 {
        font-size: 2.5em;
    }
    
    .tagline {
        font-size: 1.3em;
    }
    
    .subtitle {
        font-size: 1/
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    
    .tagline {
        font-size: 1.2em;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 15px 40px;
        font-size: 1.1em;
    }
    
    .info-section h2 {
        font-size: 2em;
    .logo h1 {
        font-size: 2em;
    }
    
    .tagline {
        font-size: 1.1em;
    }
    
    .subtitle {
        font-size: 0.9

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }
    
    .hero-section {
        padding: 20px 10px;
    }
    
    .info-section {
        padding: 30px 20px;
    }
}
