:root {
    --primary: #032139;
    --secondary: #77bc4b;
    --secondary-hover: #5da338;
    --dark: #021a2e;
    --light: #f4f4f4;
    --white: #ffffff;
    --gray: #e0e0e0;
    --text-muted: #a0a0a0;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Fluid Typography Scale */
    --fs-xs: clamp(0.7rem, 0.6rem + 0.5vw, 0.85rem);
    --fs-sm: clamp(0.8rem, 0.7rem + 0.5vw, 0.95rem);
    --fs-base: clamp(0.9rem, 0.8rem + 0.5vw, 1.1rem);
    --fs-lg: clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
    --fs-xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    --fs-2xl: clamp(2rem, 1.5rem + 3vw, 4.5rem);
    --fs-tag: clamp(0.7rem, 0.65rem + 0.2vw, 0.85rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--primary);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(119, 188, 75, 0.1);
    color: var(--secondary);
    font-size: var(--fs-tag);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: var(--fs-xl);
    color: var(--white);
    margin-bottom: 25px;
    display: block;
    line-height: 1.2;
}

.section-header h2 .accent {
    color: var(--secondary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(3, 33, 57, 0.9);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo .accent {
    color: var(--secondary);
}

.nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav a:hover {
    color: var(--secondary);
}

.btn-nav {
    padding: 8px 20px;
    border: 1px solid var(--secondary);
    border-radius: 50px;
    color: var(--secondary) !important;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--secondary);
    color: var(--primary) !important;
    box-shadow: 0 0 15px rgba(119, 188, 75, 0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 10px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: radial-gradient(circle at 0% 0%, rgba(119, 188, 75, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(3, 33, 57, 0.8) 0%, var(--primary) 100%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.05;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(119, 188, 75, 0.1);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(119, 188, 75, 0.2);
}

.hero h1 {
    font-size: var(--fs-2xl);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    color: var(--white);
    word-wrap: break-word;
    /* Prevents overflow */
    overflow-wrap: break-word;
}

.hero p {
    font-size: var(--fs-lg);
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.5;
    /* Better spacing for readability */
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    /* Critical for mobile */
    gap: 20px;
    margin-bottom: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    min-width: 120px;
    /* Ensures stats don't squash too much */
}

.stat strong {
    font-size: 1.8rem;
    color: var(--secondary);
    line-height: 1;
}

.stat span {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.cta-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Hero Visual & Cards */
.hero-visual {
    position: relative;
    height: 500px;
}

.hero-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-card {
    position: absolute;
    width: 240px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    z-index: 2;
}

.hero-card:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: var(--secondary);
    z-index: 5;
}

.hero-card-img {
    height: 140px;
    overflow: hidden;
}

.hero-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-card:hover .hero-card-img img {
    transform: scale(1.1);
}

.hero-card-body {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-card-body i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.hero-card-body span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

/* Floating Positions */
.card-1 {
    top: 10%;
    left: 0;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 45%;
    right: 0;
    animation: float 8s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 0;
    left: 20%;
    animation: float 7s ease-in-out infinite 0.5s;
}

.card-4 {
    top: 25%;
    right: 15%;
    animation: float 9s ease-in-out infinite 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-8px);
        }
    }
}

.accent-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(119, 188, 75, 0.15);
    top: 10%;
    right: -10%;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: rgba(3, 33, 57, 0.4);
    bottom: 10%;
    left: -10%;
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 30px;
    font-size: var(--fs-xl);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: var(--fs-base);
}

.about-insight {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(119, 188, 75, 0.1);
    margin: 30px 0;
}

.about-insight p {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 15px;
}

.insight-list {
    display: grid;
    gap: 12px;
}

.insight-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.insight-list i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.highlight-p {
    border-left: 4px solid var(--secondary);
    padding-left: 20px;
    color: var(--white) !important;
    font-style: italic;
    font-size: 1.2rem !important;
    margin-top: 30px;
}

.about-visual {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    background: #032131;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    min-height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    flex-direction: column;
}

.about-img-wrapper .bfe-logo-text {
    display: block;
    font-size: 5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 0.9;
    font-family: var(--font-main);
}

.about-img-wrapper .negocios-text {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: var(--white);
    font-weight: 400;
    margin-top: 5px;
    font-family: var(--font-main);
}

.about-img-wrapper .logo-divider {
    margin-top: 25px;
    border-top: 1px solid rgba(119, 188, 75, 0.3);
    padding-top: 15px;
}

.about-img-wrapper .logo-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-img-wrapper img {
    transition: var(--transition);
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary);
    color: var(--primary);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(119, 188, 75, 0.3);
    z-index: 2;
}

.experience-badge strong {
    display: block;
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 800;
}

.experience-badge span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Responsive About */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        order: -1;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
}

.scroll-dot {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--secondary), transparent);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }

    50% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
}

.btn-ghost {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 16px 35px;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--white);
}

/* Ensure no overlap in about section */
.about-text p {
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: var(--fs-base);
    line-height: 1.6;
}

/* Hierarchical Services Section */
.services-hierarchy {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hierarchy-group {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    transition: var(--transition);
}

.hierarchy-group:hover {
    border-color: var(--secondary);
    background: rgba(119, 188, 75, 0.02);
}

.group-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 15px;
    position: relative;
    cursor: pointer;
}

.group-header::after {
    content: '\f078';
    /* fa-chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.hierarchy-group.active .group-header::after {
    content: '\f077';
    /* fa-chevron-up */
    color: var(--white);
}

.group-header i {
    font-size: 2.2rem;
    color: var(--secondary);
    transition: var(--transition);
}

.hierarchy-group.active .group-header i {
    transform: scale(1.1);
    color: var(--white);
}

.group-header h3 {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hierarchy-group.active .branches-grid {
    max-height: 1000px;
    opacity: 1;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.branch {
    padding: 20px;
    border-left: 3px solid rgba(119, 188, 75, 0.3);
    transition: var(--transition);
}

.branch:hover {
    border-left-color: var(--secondary);
}

.branch h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.branch ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.branch li {
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
}

.branch li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hierarchy-group {
        padding: 30px 20px;
    }

    .group-header h3 {
        font-size: 1.4rem;
    }

    .branches-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-content p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--light);
}

.contact-list i {
    width: 40px;
    height: 40px;
    background: rgba(119, 188, 75, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1rem;
}

.contact-form-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.input-group input:focus,
.input-group select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(119, 188, 75, 0.2);
}

.input-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
    padding: 0 5px;
}

.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label,
.input-group select:focus~label,
.input-group select:not([value=""])~label {
    top: 0;
    left: 10px;
    font-size: 0.8rem;
    color: var(--secondary);
    background: var(--primary);
    transform: translateY(-50%);
}

.full-width {
    width: 100%;
    text-align: center;
}

/* Footer */
.footer {
    padding: 30px 0;
    background: var(--dark);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Canvas Background */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
/* Responsive refinements */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .hero-grid {
        gap: 30px;
    }

    .hero-card {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .hero {
        padding: 120px 0 80px;
        text-align: center;
        height: auto;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-stats {
        justify-content: center;
        gap: 25px;
        width: 100%;
    }

    .stat {
        min-width: 140px;
    }

    .stat-divider {
        display: none;
    }

    .hero-visual {
        height: 480px;
        width: 100%;
        margin-top: 20px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-cards {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .hero-card {
        width: 220px;
        height: auto;
        position: absolute;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
    }

    .hero-card-img {
        height: 100px;
    }

    .hero-card-body {
        padding: 10px 15px;
        gap: 8px;
    }

    .hero-card-body span {
        font-size: 0.8rem;
        font-weight: 700;
        white-space: nowrap;
    }

    /* Tight cascading effect for mobile */
    .card-1 {
        top: 0;
        left: 5%;
        right: auto;
        bottom: auto;
        z-index: 1;
    }

    .card-2 {
        top: 80px;
        right: 5%;
        left: auto;
        bottom: auto;
        z-index: 2;
    }

    .card-3 {
        top: 160px;
        left: 5%;
        right: auto;
        bottom: auto;
        z-index: 3;
    }

    .card-4 {
        top: 240px;
        right: 5%;
        left: auto;
        bottom: auto;
        z-index: 4;
    }

    .nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 85%);
        height: 100vh;
        background: rgba(3, 33, 57, 0.99);
        backdrop-filter: blur(25px);
        padding: 100px 30px;
        transition: 0.5s ease-out;
        z-index: 1050;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .nav a {
        font-size: 1.3rem;
        display: block;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-content h2 {
        font-size: var(--fs-xl);
        text-align: center;
    }

    .contact-content p {
        text-align: center;
    }

    .contact-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-list li {
        width: 100%;
        max-width: 400px;
        justify-content: flex-start;
    }

    .cta-wrapper {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .about-visual {
        order: -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat strong {
        font-size: 1.5rem;
    }

    .stat span {
        font-size: 0.75rem;
    }

    .hero-visual {
        height: 460px;
    }

    .hero-card {
        width: 180px;
    }

    .hero-card-img {
        height: 80px;
    }

    .card-1 {
        top: 0;
        left: 5%;
        right: auto;
        bottom: auto;
    }

    .card-2 {
        top: 70px;
        right: 5%;
        left: auto;
        bottom: auto;
    }

    .card-3 {
        top: 140px;
        left: 5%;
        right: auto;
        bottom: auto;
    }

    .card-4 {
        top: 210px;
        right: 5%;
        left: auto;
        bottom: auto;
    }

    /* Tighter grid for mobile logo */
    .about-img-wrapper {
        padding: 40px 20px !important;
        min-height: 250px !important;
    }

    .about-img-wrapper .bfe-logo-text {
        font-size: 3.5rem !important;
    }

    .about-img-wrapper .negocios-text {
        font-size: 1rem !important;
        letter-spacing: 2px;
    }

    .contact-form-box {
        padding: 30px 20px;
    }

    .input-group label {
        font-size: 0.9rem;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .nav {
        padding: 60px 40px;
    }

    .nav ul {
        gap: 15px;
    }

    .nav a {
        font-size: 1.1rem;
    }
}