﻿/* ========================
   Cao Bin Page Styles
   ======================== */

:root {
    --primary-blue: #0066CC;
    --light-blue: #3399FF;
    --accent-orange: #FFA500;
    --highlight-red: #E63946;
    --text-dark: #222222;
    --text-medium: #555555;
    --text-light: #777777;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --border-color: #E5E7EB;
    --success-green: #25D366;
    --gold: #FFD700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--bg-white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 52px;
}

h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

.section-lead {
    font-size: 22px;
    color: var(--text-medium);
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.6;
}

.highlight {
    background: linear-gradient(120deg, #FFD700 0%, #FFA500 100%);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.achievement {
    color: var(--highlight-red);
    font-weight: 700;
    font-style: italic;
}

/* Header - Same as index2 */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu > ul {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu > ul > li {
    position: relative;
}

.nav-menu > ul > li > a {
    display: block;
    font-size: 19px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s;
    padding: 10px 22px;
    white-space: nowrap;
}

.nav-menu > ul > li > a:hover,
.nav-menu a[aria-current="page"] {
    color: var(--primary-blue);
}

.nav-menu a[href="javascript:void(0)"] {
    cursor: pointer;
}

.has-dropdown {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 240px;
    padding: 8px 0;
    border-radius: 6px;
    margin-top: 0;
    z-index: 100;
}

.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown li {
    padding: 0;
    list-style: none;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    font-size: 18px;
    transition: background 0.2s, color 0.2s;
}

.dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--text-dark);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 26px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.hero-credentials {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-credentials span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.hero-credentials i {
    color: var(--accent-orange);
    font-size: 20px;
}

/* Profile Section */
.profile-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.profile-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.image-caption {
    margin-top: 16px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.image-caption p {
    font-size: 18px;
    color: var(--text-medium);
    font-style: italic;
}

.profile-info h2 {
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
}

.info-item i {
    font-size: 32px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.info-item p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Equipment Evolution */
.equipment-evolution {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #daeeff 50%, #b8dcff 100%);
}

.equipment-evolution h2 {
    text-align: center;
}

.equipment-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.equipment-item {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}

.equipment-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.equipment-image {
    position: relative;
    overflow: hidden;
}

.equipment-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.equipment-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--bg-white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.equipment-info {
    padding: 32px;
}

.equipment-info h3 {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.equipment-info p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Innovation Journey */
.innovation-journey {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #daeeff 50%, #b8dcff 100%);
}

.innovation-journey h2 {
    text-align: center;
}

.journey-timeline {
    max-width: 1100px;
    margin: 60px auto 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 60px;
    bottom: -60px;
    width: 3px;
    background: var(--primary-blue);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 120px;
    height: 120px;
    background: var(--primary-blue);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: var(--bg-white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.timeline-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.timeline-content blockquote {
    margin: 24px 0;
    padding: 24px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-orange);
    border-radius: 8px;
}

.timeline-content blockquote i {
    font-size: 24px;
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.timeline-content blockquote p {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 12px;
}

.timeline-content cite {
    font-size: 18px;
    color: var(--text-medium);
    font-weight: 600;
}

.highlight-box {
    padding: 24px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-radius: 10px;
    border: 2px solid var(--accent-orange);
    margin: 24px 0;
}

.highlight-box i {
    font-size: 28px;
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.highlight-box p {
    font-size: 18px;
    margin: 0;
}

/* Prototype Showcase */
.prototype-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 24px 0;
}

.prototype-image {
    position: relative;
}

.prototype-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.image-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--accent-orange);
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
}

.prototype-specs {
    background: var(--bg-light);
    padding: 28px;
    border-radius: 10px;
}

.prototype-specs h4 {
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.prototype-specs ul {
    list-style: none;
    padding: 0;
}

.prototype-specs li {
    padding: 10px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--border-color);
}

.prototype-specs li:last-child {
    border-bottom: none;
}

.success-metrics {
    display: flex;
    justify-content: space-around;
    gap: 24px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.metric {
    text-align: center;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 150px;
}

.metric .number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.metric .label {
    display: block;
    font-size: 18px;
    color: var(--text-medium);
}

/* Personal Qualities */
.personal-qualities {
    padding: 100px 0;
    background: var(--bg-white);
}

.personal-qualities h2 {
    text-align: center;
}

.qualities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.quality-card {
    padding: 36px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
    border-radius: 12px;
    border: 2px solid var(--primary-blue);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.quality-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}

.quality-card i {
    font-size: 52px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.quality-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.quality-card p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: left;
}

/* Team Legacy */
.team-legacy {
    padding: 100px 0;
    background: linear-gradient(135deg, #eaf0f8 0%, #d0e0f0 50%, #b4ccec 100%);
}

.team-legacy h2 {
    text-align: center;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.member-card {
    padding: 32px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.member-card h3 {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.member-card .role {
    font-size: 18px;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 16px;
}

.member-card p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
}

.legacy-quote {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: var(--bg-white);
    border-left: 6px solid var(--primary-blue);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.legacy-quote i {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.legacy-quote p {
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.legacy-quote cite {
    display: block;
    font-size: 18px;
    color: var(--text-medium);
    font-weight: 600;
    text-align: right;
}

/* Impact Section */
.impact-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.impact-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.impact-section h3 {
    text-align: center;
    color: var(--primary-blue);
    margin: 80px 0 40px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.impact-card {
    text-align: center;
    padding: 36px 28px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
    border-radius: 12px;
    border: 2px solid var(--primary-blue);
}

.impact-icon {
    font-size: 56px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.impact-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.impact-card p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Project Gallery */
.project-gallery {
    margin-top: 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 28px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 20px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
}

.gallery-caption h4 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.gallery-caption p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Manufacturing Section */
.manufacturing-section {
    margin-top: 80px;
    padding: 50px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
    border-radius: 16px;
}

.manufacturing-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 32px;
}

.manufacturing-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.manufacturing-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.manufacturing-text ul {
    list-style: none;
    padding: 0;
}

.manufacturing-text li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.manufacturing-text li i {
    color: var(--success-green);
    font-size: 20px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--highlight-red);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: #d32f3c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(227, 57, 70, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--bg-white);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
    color: var(--text-dark);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-weight: 700;
}

.footer-col p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-dark);
    font-size: 18px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-blue);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-dark);
    font-size: 18px;
}

.contact-info i {
    color: var(--primary-blue);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 102, 204, 0.2);
}

.footer-bottom p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 1200px) and (min-width: 1025px) {
    .nav-wrapper {
        gap: 16px;
    }

    .nav-menu > ul {
        gap: 2px;
    }

    .nav-menu > ul > li > a {
        padding: 10px 12px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }

    .nav-wrapper {
        padding: 16px 0;
        gap: 0;
    }

    .logo {
        margin-right: 0;
    }

    .logo img {
        height: 40px;
    }

    .nav-menu > ul {
        gap: 0;
    }

    .nav-menu > ul > li > a {
        padding: 10px 8px;
        font-size: 19px;
        white-space: nowrap;
    }

    .dropdown {
        min-width: 200px;
    }

    .dropdown a {
        padding: 10px 16px;
        font-size: 16px;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }
    
    .prototype-showcase {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        grid-template-columns: 100px 1fr;
        gap: 24px;
    }
    
    .timeline-marker {
        width: 100px;
        height: 100px;
        font-size: 24px;
    }
    
    .timeline-item::before {
        left: 50px;
    }
    
    .manufacturing-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .equipment-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px), (max-width: 1024px) and (orientation: portrait) {
    .nav-menu {
        display: block;
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: var(--bg-white);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: left 0.3s ease;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu > ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-menu > ul > li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu > ul > li > a {
        padding: 18px 24px;
    }
    
    .dropdown {
        position: static;
        box-shadow: none;
        background: var(--bg-light);
        margin: 0;
        padding: 0;
        border-radius: 0;
    }
    
    .dropdown a {
        padding: 14px 24px 14px 44px;
    }
    
    .has-dropdown:hover .dropdown {
        display: none;
    }
    
    .has-dropdown.active .dropdown {
        display: block;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 34px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline-marker {
        width: 80px;
        height: 80px;
        font-size: 22px;
        margin: 0 auto;
    }
    
    .timeline-item::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .qualities-grid,
    .team-members,
    .impact-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .manufacturing-section {
        padding: 30px 20px;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 18px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero-credentials {
        flex-direction: column;
        gap: 16px;
    }
}
