@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;700&display=swap');

:root {
    --glass-bg: rgba(20, 20, 20, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.65);
    --accent-color: #00c6ff;
    
    /* Couleurs Nexus */
    --blob-1: #4338ca; /* Indigo profond */
    --blob-2: #0891b2; /* Cyan */
    --blob-3: #7e22ce; /* Violet */

    /* La courbe magique pour la fluidité (effet d'inertie) */
    --ease-fluid: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

html {
    /* IMPORTANT : On désactive le scroll natif pour laisser Lenis gérer */
    scroll-behavior: auto; 
    height: 100%;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }

body {
    background-color: #030303;
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    font-weight: 300;
}

/* --- FOND LIQUIDE ORGANIQUE --- */
.background-blobs {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #030303;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px); /* Flou légèrement réduit pour mieux voir les couleurs */
    opacity: 0.6;
    
    /* OPTIMISATION GPU POUR LA FLUIDITÉ */
    will-change: transform;
    transform: translate3d(0, 0, 0);
    animation: organicFloat 25s infinite alternate ease-in-out;
}

.blob-1 { top: -10%; left: -10%; width: 55vw; height: 55vw; background: var(--blob-1); }
.blob-2 { bottom: -20%; right: -10%; width: 50vw; height: 50vw; background: var(--blob-2); animation-delay: -5s; }
.blob-3 { top: 40%; left: 30%; width: 35vw; height: 35vw; background: var(--blob-3); animation-delay: -10s; }

/* Animation plus complexe et fluide */
@keyframes organicFloat {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(30px, -50px) scale(1.1) rotate(10deg); }
    66% { transform: translate(-20px, 20px) scale(0.9) rotate(-5deg); }
    100% { transform: translate(0, 0) scale(1) rotate(0deg); }
}

/* --- NAVBAR FROSTED --- */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    height: 60px;
    background: rgba(5, 5, 5, 0.7); /* Plus sombre */
    backdrop-filter: blur(20px) saturate(180%); /* Effet verre premium */
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    z-index: 1000;
    transition: all 0.5s ease;
}

.logo a { 
    font-size: 1.1rem; 
    font-weight: 700; 
    letter-spacing: 2px; 
    color: white; 
    text-decoration: none; 
    text-transform: uppercase;
}

.nav-links { display: flex; gap: 25px; list-style: none; }
.nav-links a { 
    position: relative;
    font-size: 0.8rem; font-weight: 400; 
    color: var(--text-muted); text-decoration: none; 
    transition: color 0.3s ease; 
    text-transform: uppercase; letter-spacing: 1px; 
}
.nav-links a:hover { color: white; }

/* Petit effet de ligne fluide sous les liens du menu */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: -5px; left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s var(--ease-fluid);
}
.nav-links a:hover::after { width: 100%; }

.lang-switch { font-size: 0.75rem; font-weight: 500; color: white; border: 1px solid var(--glass-border); padding: 5px 12px; border-radius: 20px; cursor: pointer; transition: 0.3s; }
.lang-switch:hover { background: rgba(255,255,255,0.1); }

/* --- HERO SECTION --- */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 50px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(120deg, #ffffff, #818cf8);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 5s linear infinite; /* Le texte brille doucement */
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Boutons Fluides */
.cta-group { display: flex; gap: 20px; align-items: center; justify-content: center; }

.btn-liquid {
    padding: 12px 32px;
    background: white;
    color: #000;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.btn-liquid:hover { 
    transform: scale(1.05); 
    box-shadow: 0 10px 30px rgba(255,255,255,0.15); 
}

.btn-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    display: flex; align-items: center; gap: 8px;
    transition: gap 0.3s ease, color 0.3s ease;
}
.btn-link:hover { color: var(--accent-color); gap: 12px; /* La flèche bouge fluidement */ }

/* --- GRILLE SERVICES --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.glass-grid {
    display: grid;
    /* Cela permet aux lignes de s'adapter automatiquement au contenu */
    grid-template-rows: auto auto; 
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 50px 0 100px;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-highlight);
    border-radius: 24px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    
    /* La clé de la fluidité : une transition lente et courbe */
    /* On ajoute backdrop-filter ici aussi */
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s var(--ease-fluid), border-color 0.6s ease, background 0.6s ease, backdrop-filter 0.6s ease;
    
    /* OPTIMISATION GPU */
    will-change: transform;
}

/* Lueur interne au survol */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.01);
    background: rgba(30, 30, 30, 0.5);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}

.glass-card:hover::before { opacity: 1; }

.card-large { grid-column: span 2; }
.card-tall { grid-row: span 2; }

/* Icon Box */
.icon-box {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.03);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px;
    border: 1px solid var(--glass-border);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.glass-card:hover .icon-box {
    transform: rotate(10deg) scale(1.1); /* L'icône réagit au survol de la carte */
    background: rgba(255,255,255,0.1);
}

.glass-card i { font-size: 1.2rem; color: white; }
.glass-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: white; font-weight: 600; }
.glass-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* Liste détails */
.detail-list { margin-top: 25px; list-style: none; }


/* --- SECTIONS ADDITIONNELLES --- */

/* Titres de section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 60px;
}
.section-header h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 10px; }
.section-header p { color: var(--text-muted); }

/* 1. Marquee Tech Stack */
.tech-marquee {
    width: 100%;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    overflow: hidden;
    margin-bottom: 50px;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: scrollText 20s linear infinite;
}

.marquee-content span {
    margin: 0 40px;
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.marquee-content i { margin-right: 10px; color: var(--accent-color); }

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 2. Grille Projets */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 100px;
}

.project-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
}

.project-card:hover { transform: translateY(-10px); border-color: rgba(255,255,255,0.3); }

.project-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.2);
}

.project-info { padding: 25px; }
.tag {
    font-size: 0.7rem; color: var(--accent-color);
    text-transform: uppercase; letter-spacing: 1px;
    font-weight: 700; display: block; margin-bottom: 10px;
}
.project-info h3 { font-size: 1.2rem; margin-bottom: 10px; }

/* 3. Processus (Timeline) - ANCIEN CODE GARDÉ COMME DEMANDÉ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-bottom: 100px;
}

.step {
    padding: 20px;
    border-left: 2px solid var(--glass-border);
    position: relative;
}

.step:hover { border-left-color: var(--accent-color); }

.step-number {
    font-size: 3rem; font-weight: 900;
    color: rgba(255,255,255,0.05);
    position: absolute; top: 0; right: 10px;
}

.step h3 { font-size: 1.1rem; margin-bottom: 10px; margin-top: 10px; }

/* 4. Contact Section */
.contact-section {
    padding: 100px 20px;
    display: flex; justify-content: center;
}

.contact-card {
    text-align: center;
    max-width: 600px;
    width: 100%;
    align-items: center; /* Centre le contenu flex */
}

.social-links { margin-top: 30px; display: flex; gap: 20px; justify-content: center; }
.social-links a { 
    color: var(--text-muted); font-size: 1.5rem; transition: 0.3s; 
}
.social-links a:hover { color: white; transform: scale(1.2); }

/* --- AMÉLIORATION SCROLLBAR (Look plus fluide) --- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { 
    background: rgba(255,255,255,0.2); 
    border-radius: 10px; 
}
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.4); }


/* --- FOOTER DÉTAILLÉ --- */

footer {
    background: rgba(0,0,0,0.8); /* Fond plus sombre pour ancrer le bas du site */
    border-top: 1px solid var(--glass-border);
    padding-top: 80px;
    margin-top: 100px;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr; /* Colonne logo plus large */
    gap: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-col p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s var(--ease-fluid);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(10px); /* Petit glissement fluide vers la droite */
}

/* Input Newsletter fluide */
.newsletter-form {
    display: flex;
    margin-top: 20px;
}
.newsletter-input {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    padding: 12px;
    border-radius: 8px 0 0 8px;
    color: white;
    outline: none;
    width: 100%;
    transition: 0.3s;
}
.newsletter-input:focus { border-color: var(--accent-color); background: rgba(255,255,255,0.1); }

.newsletter-btn {
    background: white;
    color: black;
    border: none;
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}
.newsletter-btn:hover { background: var(--accent-color); color: white; }

.footer-bottom {
    text-align: center;
    padding: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 60px;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .hero h1 { font-size: 2.5rem; }
    .glass-grid { grid-template-columns: 1fr; }
    .card-large, .card-tall { grid-column: span 1; grid-row: span 1; }
    .glass-card { min-height: auto; }
    .projects-grid, .process-steps { grid-template-columns: 1fr; }
    .step { border-left: none; border-top: 2px solid var(--glass-border); padding-top: 20px; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
}


/* --- AJOUTS FINAUX (SECTION EXPERTISE & DÉTAILS) --- */

/* Ligne de séparation subtile dans la carte Design */
.separator {
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    margin: 20px 0;
    opacity: 0.5;
}

/* Amélioration de la liste à puces (remplace le style de base) */
.detail-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.detail-list li:hover {
    transform: translateX(5px);
    color: white;
}

.detail-list li i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

/* Effet de pulsation douce sur l'icône principale */
.pulse-effect {
    box-shadow: 0 0 0 0 rgba(0, 198, 255, 0.4);
    animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 198, 255, 0.4); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 198, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 198, 255, 0); }
}

/* --- NOUVEAU DESIGN WORKFLOW (GRID PIPELINE) --- */

.workflow-grid {
    display: grid;
    /* 4 colonnes sur grand écran, s'adapte automatiquement */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px;
    padding-bottom: 50px;
    position: relative;
}

.workflow-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden; /* Important pour couper le numéro géant */
    transition: all 0.4s var(--ease-fluid);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Effet Hover : La carte monte et s'illumine */
.workflow-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px -10px rgba(0, 198, 255, 0.2);
    background: rgba(255,255,255,0.05);
}

/* Le numéro géant en arrière-plan */
.card-bg-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    z-index: 0;
    line-height: 1;
    pointer-events: none;
    transition: 0.4s ease;
}

.workflow-card:hover .card-bg-number {
    color: rgba(0, 198, 255, 0.1); /* Le numéro devient légèrement bleu au survol */
    transform: scale(1.1);
}

/* L'icône */
.card-icon {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
    font-size: 1.2rem;
    color: var(--accent-color);
    z-index: 1; /* Au-dessus du numéro géant */
    position: relative;
}

.workflow-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
    z-index: 1;
    position: relative;
}

.workflow-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    z-index: 1;
    position: relative;
}

/* Petite ligne décorative en bas de carte (sauf la dernière) */
.step-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin-top: auto; /* Pousse vers le bas */
    padding-top: 20px;
    opacity: 0.3;
}

/* RESPONSIVE ADDITIONNEL */
@media (max-width: 900px) {
    .workflow-grid {
        grid-template-columns: 1fr; /* Une seule colonne sur mobile */
        gap: 20px;
    }
    
    .card-bg-number {
        font-size: 6rem; /* Un peu plus petit sur mobile */
    }
}


/* ==========================================================
   NOUVEAU DESIGN CONTACT (HUB SPLIT-SCREEN)
   ========================================================== */

.contact-hub {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Deux colonnes égales */
    gap: 60px;
    align-items: center;
}

/* --- COLONNE GAUCHE (INFO) --- */
.contact-info h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 450px;
}

.badge-contact {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 198, 255, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.direct-contacts {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--glass-border);
    color: white;
    font-size: 1.2rem;
    transition: 0.3s;
}

.contact-item:hover .icon-circle {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.contact-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.social-row {
    display: flex;
    gap: 20px;
}
.social-row a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}
.social-row a:hover {
    background: white;
    color: black;
    transform: translateY(-5px);
}

/* --- COLONNE DROITE (FORMULAIRE) --- */
.glass-form {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
    margin-left: 5px;
}

.glass-form input, 
.glass-form select, 
.glass-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
    font-family: 'Outfit', sans-serif;
}

/* Changement de couleur au focus */
.glass-form input:focus, 
.glass-form select:focus, 
.glass-form textarea:focus {
    border-color: var(--accent-color);
    background: rgba(0, 198, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.1);
}

/* Style du select dropdown */
.glass-form select {
    appearance: none; /* Enlève la flèche par défaut moche */
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300c6ff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}
.glass-form select option {
    background: #1a1a1a; /* Fond sombre pour les options */
    color: white;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: white;
    color: black;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
    display: flex; justify-content: center; align-items: center; gap: 10px;
}

.btn-submit:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 198, 255, 0.3);
}

/* RESPONSIVE CONTACT */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr; /* Une seule colonne sur mobile */
        gap: 40px;
    }
    .contact-info h2 { font-size: 2.5rem; }
}