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

body {
    font-family: 'Inter', sans-serif;
    color: #F8F9FA;
    overflow-x: hidden;
    background: #0B1C2C;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 28, 44, 0.02);
    backdrop-filter: blur(0px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.navbar.scrolled {
    background: rgba(11, 28, 44, 0.85);
    backdrop-filter: blur(40px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateY(0);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: height 0.4s ease;
}

.navbar.scrolled .nav-container {
    height: 75px;
}

.nav-logo span {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4.5rem;
    margin-left: auto;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), transparent);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 1rem;
    margin: -1rem;
}

.hamburger-line {
    width: 22px;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.nav-mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}

.nav-mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -3px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 28, 44, 0.98);
    backdrop-filter: blur(40px);
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 200;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    padding: 1rem 2rem;
    position: relative;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    width: 0;
    height: 1px;
    background: rgba(212, 175, 55, 0.8);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.mobile-nav-link:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.mobile-nav-link:hover::before {
    width: 60%;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0B1C2C;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero {
        background: linear-gradient(135deg, #0B1C2C 0%, #1a2f42 50%, #0B1C2C 100%);
        background-size: 400% 400%;
        animation: mobileGradient 15s ease-in-out infinite;
    }

    .video-background {
        display: none;
    }
}

@keyframes mobileGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.wave-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        linear-gradient(180deg, rgba(11, 28, 44, 0.3) 0%, rgba(11, 28, 44, 0.6) 100%);
    animation: subtleFlow 15s ease-in-out infinite;
}

@keyframes subtleFlow {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: titleReveal 1.5s ease-out 0.3s forwards;
    color: #F8F9FA;
}

@keyframes titleReveal {
    to {
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(248, 249, 250, 0.85);
    letter-spacing: 0.02em;
    opacity: 0;
    animation: subtitleReveal 1.5s ease-out 0.6s forwards;
}

@keyframes subtitleReveal {
    to {
        opacity: 1;
    }
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: none;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: capitalize;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border-radius: 2px;
    opacity: 0;
    animation: ctaReveal 1.5s ease-out 0.9s forwards;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.03);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    pointer-events: none;
}

.cta-button:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.04);
    box-shadow:
        0 8px 32px rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.08);
}

.cta-button:hover::before {
    width: 80%;
}

@keyframes ctaReveal {
    to {
        opacity: 1;
    }
}

.cta-button:hover::after {
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: scrollReveal 1.5s ease-out 1.5s forwards;
}

@keyframes scrollReveal {
    to {
        opacity: 1;
    }
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(248, 249, 250, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

.philosophy {
    padding: 4rem 0 8rem 0;
    background: #0B1C2C;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    margin-top: -8rem;
}

.philosophy .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.philosophy-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    color: rgba(248, 249, 250, 0.9);
    max-width: 950px;
    margin: 0 auto;
}

.highlight-gold {
    color: #D4AF37;
    font-weight: 500;
}

.portfolio {
    padding: 10rem 0;
    background: linear-gradient(135deg, #0B1C2C 0%, #1a2f42 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.portfolio h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    margin-bottom: 1rem;
    color: #F8F9FA;
    text-align: center;
}

.portfolio-subtitle {
    font-size: 1.2rem;
    color: rgba(248, 249, 250, 0.7);
    font-weight: 300;
    font-style: italic;
    text-align: center;
    margin-bottom: 6rem;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.work-card {
    padding: 3rem 2.5rem;
    background: rgba(248, 249, 250, 0.02);
    border: 1px solid rgba(248, 249, 250, 0.08);
    backdrop-filter: blur(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.03), transparent);
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-8px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    background: rgba(248, 249, 250, 0.04);
}

.work-card:hover::before {
    left: 100%;
}

.work-card:hover .work-accent {
    width: 60px;
    opacity: 1;
}

.work-card:hover .work-number {
    color: #D4AF37;
    transform: scale(1.1);
}

.work-number {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(248, 249, 250, 0.4);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
}

.work-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: rgba(248, 249, 250, 0.95);
    line-height: 1.3;
}

.work-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(248, 249, 250, 0.8);
    font-weight: 300;
    margin-bottom: 2rem;
}

.work-accent {
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #D4AF37, rgba(212, 175, 55, 0.3));
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.studio {
    padding: 8rem 0;
    background: #0B1C2C;
    display: flex;
    align-items: center;
    min-height: 60vh;
    text-align: center;
}

.studio h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    margin-bottom: 2rem;
    color: #F8F9FA;
}

.studio-text {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    line-height: 1.6;
    color: rgba(248, 249, 250, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.capabilities {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0B1C2C 0%, #1a2f42 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.capability-card {
    padding: 2.5rem 2rem;
    background: rgba(248, 249, 250, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: left 0.6s ease;
}

.capability-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.capability-card:hover::before {
    left: 100%;
}

.capability-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: rgba(248, 249, 250, 0.95);
}

.capability-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(248, 249, 250, 0.8);
}

.capabilities {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0B1C2C 0%, #1a2f42 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.capability-card {
    padding: 2.5rem 2rem;
    background: rgba(248, 249, 250, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: left 0.6s ease;
}

.capability-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.capability-card:hover::before {
    left: 100%;
}

.capability-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: rgba(248, 249, 250, 0.95);
}

.capability-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(248, 249, 250, 0.8);
}

.connect {
    padding: 8rem 0;
    background: #0B1C2C;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.connect h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    margin-bottom: 1rem;
    color: #F8F9FA;
}

.connect-subtitle {
    font-size: 1.2rem;
    color: rgba(248, 249, 250, 0.7);
    margin-bottom: 3rem;
    font-weight: 300;
}

.connect-email {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    color: rgba(248, 249, 250, 0.9);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
    letter-spacing: 0.02em;
}

.connect-email:hover {
    border-bottom-color: rgba(248, 249, 250, 0.9);
}

.luxury-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(248, 249, 250, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 3rem;
    margin-top: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(212, 175, 55, 0.9);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(248, 249, 250, 0.03);
    border: 1px solid rgba(248, 249, 250, 0.1);
    border-radius: 4px;
    padding: 1rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(248, 249, 250, 0.9);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(248, 249, 250, 0.4);
    font-style: italic;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(248, 249, 250, 0.05);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.form-group input:focus+.form-accent,
.form-group textarea:focus+.form-accent {
    width: 100%;
    opacity: 1;
}

.form-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), transparent);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.form-submit {
    width: 100%;
    padding: 1.25rem 3rem;
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(248, 249, 250, 0.95);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: capitalize;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.form-submit::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.9), transparent);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
}

.form-submit:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    box-shadow:
        0 16px 64px rgba(212, 175, 55, 0.12),
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(212, 175, 55, 0.3);
}

.form-submit:hover::before {
    width: 90%;
}

.form-submit:active {
    transform: translateY(0);
}

.submit-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.03);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    pointer-events: none;
}

.form-submit:hover .submit-accent {
    opacity: 1;
}

.recaptcha-container {
    margin-top: 0.75rem;
    display: flex;
    justify-content: center;
    padding: 1rem;
    background: rgba(248, 249, 250, 0.02);
    border-radius: 4px;
    border: 1px solid rgba(248, 249, 250, 0.05);
}

.recaptcha-container .g-recaptcha {
    transform: scale(0.95);
    transform-origin: center;
}

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

    .nav-menu {
        gap: 3rem;
    }

    .work-grid {
        gap: 3rem;
    }

    .work-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
        height: 75px;
    }

    .navbar.scrolled .nav-container {
        height: 70px;
    }

    .nav-menu {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }

    .hero {
        padding-top: 75px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .work-card {
        padding: 2rem 1.5rem;
    }

    .portfolio-subtitle {
        margin-bottom: 4rem;
    }

    .gold-separator {
        width: 150px !important;
        margin: 4rem auto !important;
    }

    .luxury-form {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .form-submit {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 70px;
        padding: 0 1rem;
    }

    .navbar.scrolled .nav-container {
        height: 65px;
    }

    .nav-logo span {
        font-size: 1.2rem;
    }

    .hero {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .mobile-nav-link {
        font-size: 1.4rem;
    }

    .mobile-menu-content {
        gap: 2rem;
    }
}