:root {
    --primary: #0a192f;
    --secondary: #112240;
    --accent: #64ffda;
    --text: #e6f1ff;
    --text-secondary: #fff;
    --glass-surface: rgba(17, 34, 64, 0.38);
    --glass-surface-strong: rgba(17, 34, 64, 0.56);
    --glass-border: rgba(230, 241, 255, 0.18);
    --glass-shadow: 0 24px 50px rgba(2, 12, 27, 0.28);
    --accent-glow: rgba(100, 255, 218, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--primary);
    background-image:
        linear-gradient(180deg, rgba(10, 25, 47, 0.95), rgba(2, 12, 27, 0.98)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='320' viewBox='0 0 520 320'%3E%3Cg fill='none' stroke='%2300e2f7' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' opacity='.36'%3E%3Cpath d='M0 42h78l20 20h72l28 28h74l32-32h70l16-16h130'/%3E%3Cpath d='M0 102h52l24 24h98l30-30h62l40 40h92l26-26h96'/%3E%3Cpath d='M0 178h92l18-18h70l34 34h84l22-22h86l24 24h90'/%3E%3Cpath d='M0 258h118l20-20h54l34-34h86l32 32h76l20-20h80'/%3E%3Cpath d='M260 0v56l-22 22v70l28 28v60l-26 26v58'/%3E%3Cpath d='M322 0v72l-30 30v58l38 38v44l-22 22v56'/%3E%3Cpath d='M198 0v50l26 26v60l-44 44v54l-28 28v58'/%3E%3Cpath d='M442 0v30l-34 34v50l-28 28v52l34 34v92'/%3E%3Cpath d='M78 0v28l32 32v46l-34 34v56l24 24v100'/%3E%3C/g%3E%3Cg fill='%2364ffda' opacity='.48'%3E%3Ccircle cx='98' cy='62' r='2'/%3E%3Ccircle cx='198' cy='90' r='2'/%3E%3Ccircle cx='304' cy='58' r='2'/%3E%3Ccircle cx='390' cy='42' r='2'/%3E%3Ccircle cx='76' cy='126' r='2'/%3E%3Ccircle cx='204' cy='96' r='2'/%3E%3Ccircle cx='306' cy='136' r='2'/%3E%3Ccircle cx='424' cy='110' r='2'/%3E%3Ccircle cx='110' cy='160' r='2'/%3E%3Ccircle cx='214' cy='194' r='2'/%3E%3Ccircle cx='320' cy='172' r='2'/%3E%3Ccircle cx='430' cy='196' r='2'/%3E%3Ccircle cx='138' cy='238' r='2'/%3E%3Ccircle cx='226' cy='204' r='2'/%3E%3Ccircle cx='344' cy='236' r='2'/%3E%3Ccircle cx='440' cy='216' r='2'/%3E%3C/g%3E%3Cg fill='%2300e2f7' opacity='.32'%3E%3Crect x='470' y='70' width='4' height='4'/%3E%3Crect x='478' y='70' width='4' height='4'/%3E%3Crect x='486' y='70' width='4' height='4'/%3E%3Crect x='470' y='78' width='4' height='4'/%3E%3Crect x='478' y='78' width='4' height='4'/%3E%3Crect x='486' y='78' width='4' height='4'/%3E%3Crect x='34' y='214' width='4' height='4'/%3E%3Crect x='42' y='214' width='4' height='4'/%3E%3Crect x='50' y='214' width='4' height='4'/%3E%3Crect x='34' y='222' width='4' height='4'/%3E%3Crect x='42' y='222' width='4' height='4'/%3E%3Crect x='50' y='222' width='4' height='4'/%3E%3Crect x='352' y='270' width='4' height='4'/%3E%3Crect x='360' y='270' width='4' height='4'/%3E%3Crect x='368' y='270' width='4' height='4'/%3E%3Crect x='352' y='278' width='4' height='4'/%3E%3Crect x='360' y='278' width='4' height='4'/%3E%3Crect x='368' y='278' width='4' height='4'/%3E%3C/g%3E%3C/svg%3E");
    background-size: auto, 520px 320px;
    background-position: 0 0, center top;
    background-attachment: fixed;
    color: var(--text);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 2rem 0;
position: fixed;
width: 100%;
top: 0;
z-index: 100;
transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
background: rgba(7, 17, 31, 0.18);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border-bottom: 1px solid rgba(230, 241, 255, 0.08);
}
nav .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
nav.scrolled {
background-color: rgba(7, 17, 31, 0.46);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.55);
border-bottom-color: rgba(100, 255, 218, 0.12);
}

.logo {
font-size: 1.5rem;
font-weight: 700;
color: var(--accent);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 0;
line-height: 1;
text-decoration: none;
}

.logo img {
display: block;
width: auto;
height: 52px;
object-fit: contain;
}

.logo-icon {
width: 40px;
height: 40px;
margin-right: 10px;
position: relative;
}

.nav-container {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-links {
display: flex;
align-items: center;
justify-content: center;
gap: 2rem;
list-style: none;
padding-bottom: 0;
}

.nav-links a {
color: var(--text);
text-decoration: none;
font-size: 1rem;
transition: color 0.3s ease;
position: relative;
}

.nav-links a:hover {
color: var(--accent);
}

.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background-color: var(--accent);
transition: width 0.3s ease;
}

.nav-links a:hover::after {
width: 100%;
}


.cta-button {
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    background-color: rgba(100, 255, 218, 0.1);
    transform: translateY(-3px);
}

.cta-button a {
    color: var(--accent);
    text-decoration: none;
}

.hero {
    padding-top: 120px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    place-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 12% auto auto 8%;
    width: 380px;
    height: 380px;
    filter: blur(10px);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(1.75rem, 4vw, 3rem);
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    background:
        linear-gradient(145deg, rgba(4, 234, 242, 0.12), rgba(255, 255, 255, 0.03)),
        var(--glass-surface);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-label {
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 2rem;
}


.content-section {
    padding: 4rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
}

.section-label {
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 2rem auto 0;
    line-height: 1.7;
    padding: 0 1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background:
        linear-gradient(145deg, rgba(8, 218, 237, 0.1), rgba(7, 192, 225, 0.03)),
        var(--glass-surface);
    padding: 2rem;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--glass-shadow);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.1);
}

.card-icon {
    width: 55px;
    height: 55px;
    background: var(--accent-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent);
    border-radius: 12px;
    opacity: 0.2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 1rem;
    color: var(--text);
}

.card-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    background:
        linear-gradient(145deg, rgba(4, 228, 248, 0.09), rgba(255, 255, 255, 0.03)),
        var(--glass-surface);
    padding: 2rem;
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 35px rgba(2, 12, 27, 0.18);
}

.value-item:hover {
    transform: translateX(10px);
    border-color: rgba(100, 255, 218, 0.28);
    box-shadow: 0 22px 40px rgba(2, 12, 27, 0.24);
}

.value-title {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 0.8rem;
    color: var(--accent);
    font-weight: 600;
}

.value-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.ceo-layout {
    display: grid;
    grid-template-columns: minmax(360px, 500px) minmax(0, 1fr);
    gap: 2rem;
    align-items: stretch;
    margin-top: 3rem;
}

.ceo-image-card,
.ceo-message-card {
    background:
        linear-gradient(145deg, rgba(8, 218, 237, 0.1), rgba(7, 192, 225, 0.03)),
        var(--glass-surface);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.ceo-image-card {
    min-height: 100%;
}

.ceo-image-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.ceo-message-card {
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.ceo-message-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: clamp(0.98rem, 2vw, 1.08rem);
    margin-bottom: 1.1rem;
}

.ceo-message-card p:last-child {
    margin-bottom: 0;
}

.ceo-signoff {
    color: var(--accent);
    font-weight: 700;
    margin-top: 1.75rem;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.62) 0%, rgba(10, 25, 47, 0.72) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(230, 241, 255, 0.08);
    border-bottom: 1px solid rgba(230, 241, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, var(--accent-glow), transparent);
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(1.75rem, 4vw, 3rem);
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    background:
        linear-gradient(145deg, rgba(7, 225, 240, 0.12), rgba(3, 233, 250, 0.03)),
        var(--glass-surface-strong);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: var(--glass-shadow);
}

.cta-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

footer {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(17, 34, 64, 0.7);
    padding: 2.5rem 0;
    text-align: center;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(230, 241, 255, 0.08);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 64px;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    list-style: none;
}

.social-icons a {
    color: var(--text-secondary);
    font-size: 1.3rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

body.menu-open {
    overflow: hidden;
}

.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--accent);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    opacity: 0;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    opacity: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    margin-top: 0;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .cursor,
    .cursor-dot {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        padding: 1rem 0;
    }
    
    nav .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .logo{
    font-size: 1.2rem;
}

    .logo img {
        height: 42px;
    }
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background:
            linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
            rgba(7, 17, 31, 0.72);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        padding: 2rem;
        z-index: 1000;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }
    
    .nav-container.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
        gap: 1.7rem;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .cta-button {
        margin-top: 1.5rem;
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero {
        padding-top: 90px;
        min-height: 70vh;
    }

    .hero .container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding-left: 1rem;
        padding-right: 1rem;
        justify-items: center;
    }

    .hero-content {
        width: 100%;
        max-width: none;
        margin: 0 auto;
        padding: 1.4rem;
        border-radius: 22px;
    }
    
    .hero-label {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .hero-title {
        font-size: clamp(2.35rem, 8vw, 3.35rem);
        line-height: 1.08;
        margin-bottom: 1.1rem;
    }

    .hero-description {
        max-width: none;
        font-size: 1rem;
        line-height: 1.75;
        margin-bottom: 0;
    }
    
    .shape-1 {
        width: 180px;
        height: 180px;
    }
    
    .shape-2 {
        width: 120px;
        height: 120px;
    }
    
    .shape-3 {
        width: 90px;
        height: 90px;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-label {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .cards-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ceo-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .ceo-image-card img {
        min-height: 420px;
    }
    
    .info-card,
    .value-item {
        padding: 1.75rem;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    footer {
        padding: 2rem 0;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding-top: 80px;
        min-height: 65vh;
    }

    .hero .container {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .hero-content {
        width: 100%;
        padding: 1.25rem;
        border-radius: 20px;
    }
    
    .hero-label {
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8.5vw, 2.6rem);
        line-height: 1.08;
    }
    
    .hero-description {
        font-size: 0.98rem;
        margin-bottom: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
        bottom: -10px;
    }
    
    .info-card,
    .value-item {
        padding: 1.5rem;
    }

    .ceo-image-card img {
        min-height: 340px;
    }

    .ceo-message-card {
        padding: 1.5rem;
    }

    .ceo-message-card p {
        line-height: 1.7;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.25rem;
    }
    
    .card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .shape-1 {
        width: 140px;
        height: 140px;
    }
    
    .shape-2 {
        width: 100px;
        height: 100px;
    }
    
    .shape-3 {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .nav-container {
        width: 85%;
    }
    
    .info-card,
    .value-item {
        padding: 1.25rem;
    }

    .ceo-message-card {
        padding: 1.25rem;
    }
}
