:root {
    --color-primary: #0a0a14;
    --color-bg: #0f0f1e;
    --color-bg-light: #1a1a2e;
    --color-text: #e8e8f0;
    --color-text-muted: #c4c4d4;
    --color-gold: #d4af37;
    --color-gold-light: #f8e4a1;
    --color-accent: #0f3460;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container-fluid {
    max-width: 1600px;
}

/* Navigation */
.navbar {
    padding: 1.25rem 0;
    background: rgba(10, 10, 20, 0.7) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 20, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #d4af37 0%, #f8e4a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-subtext {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    font-weight: 600;
}

.nav-link {
    color: var(--color-text) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-gold) !important;
}

.dropdown-menu {
    background: rgba(20, 20, 35, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-top: 0.5rem;
}

/* Mobile dropdown styles */
@media (max-width: 991px) {
    .dropdown-menu {
        background: rgba(15, 15, 25, 0.95);
        border: 1px solid rgba(212, 175, 55, 0.2);
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        position: static !important;
        transform: none !important;
    }

    .navbar-nav .dropdown-menu {
        border-left: 3px solid var(--color-gold);
        margin-left: 1rem;
    }

    .dropdown-item {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .nav-item.dropdown {
        margin-bottom: 0.5rem;
    }
}

/* Desktop dropdown hover improvements */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu {
        margin-top: 0;
        animation: dropdownFadeIn 0.3s ease;
    }
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    color: var(--color-text);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-gold);
}

.btn-gold {
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #d4af37 0%, #e8c468 100%);
    color: var(--color-primary);
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    color: var(--color-primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.pexels.com/photos/7567434/pexels-photo-7567434.jpeg?auto=compress&cs=tinysrgb&w=2400');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.75) 0%, rgba(15, 52, 96, 0.70) 100%);
    z-index: 1;
}

.badge-premium {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 1.5rem 0;
}

.title-accent {
    background: linear-gradient(135deg, #d4af37 0%, #f8e4a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text);
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37 0%, #f8e4a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--color-gold);
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Services Section */
.services-section {
    background: var(--color-bg);
}

.section-header {
    max-width: 800px;
    margin: 0 auto;
}

.badge-section {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.service-card {
    padding: 2.5rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(15, 52, 96, 0.1) 100%);
    border-radius: 16px;
    color: var(--color-gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* About Section */
.about-section {
    background: var(--color-bg-light);
}

.about-section p.text-muted {
    color: #d8d8e0 !important;
    font-size: 1.125rem;
    line-height: 1.8;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.feature-item h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-image-wrapper {
    position: relative;
    padding-left: 40px;
}

.about-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: 40px;
    bottom: 40px;
    border: 2px solid var(--color-gold);
    border-radius: 24px;
    z-index: -1;
}

.about-image-frame img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.about-image-frame:hover img {
    transform: scale(1.05);
}

.about-image-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-light) 100%);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.image-card-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.image-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.image-card-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.image-card-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: translate(-10px, -10px);
}

/* Values Section */
.values-section {
    background: var(--color-bg);
}

.value-card {
    padding: 3rem 2.5rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
}

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

.value-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37 0%, #f8e4a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.value-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(15, 52, 96, 0.2) 100%);
}

/* Footer */
.footer {
    background: var(--color-primary);
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p.text-muted {
    color: #d8d8e0 !important;
    font-size: 1rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #d8d8e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: #d8d8e0;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--color-gold);
    margin-top: 0.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.footer a.text-muted {
    color: #d8d8e0 !important;
    transition: color 0.3s ease;
}

.footer a.text-muted:hover {
    color: var(--color-gold) !important;
}

.footer p.text-muted.small {
    color: #d8d8e0 !important;
}

/* Subpage Styles */
.subpage-hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.85) 0%, rgba(15, 52, 96, 0.80) 100%);
    z-index: 0;
}

.subpage-hero .container {
    position: relative;
    z-index: 1;
}

/* Anlageberatung - Investment consulting */
body:has([href*="anlageberatung.html"].active) .subpage-hero,
.page-anlageberatung .subpage-hero {
    background-image: url('https://images.pexels.com/photos/6801648/pexels-photo-6801648.jpeg?auto=compress&cs=tinysrgb&w=2400');
}

/* Vermögensverwaltung - Wealth management */
body:has([href*="vermoegensverwaltung.html"].active) .subpage-hero,
.page-vermoegensverwaltung .subpage-hero {
    background-image: url('https://images.pexels.com/photos/6801874/pexels-photo-6801874.jpeg?auto=compress&cs=tinysrgb&w=2400');
}

/* Vermögensplanung - Financial planning */
body:has([href*="vermoegensplanung.html"].active) .subpage-hero,
.page-vermoegensplanung .subpage-hero {
    background-image: url('https://images.pexels.com/photos/7788009/pexels-photo-7788009.jpeg?auto=compress&cs=tinysrgb&w=2400');
}

/* Ruhestandsplanung - Retirement planning */
body:has([href*="ruhestandsplanung.html"].active) .subpage-hero,
.page-ruhestandsplanung .subpage-hero {
    background-image: url('https://images.pexels.com/photos/6289065/pexels-photo-6289065.jpeg?auto=compress&cs=tinysrgb&w=2400');
}

/* Festzinsanleihen - Fixed income bonds */
body:has([href*="festzinsanleihen.html"].active) .subpage-hero,
.page-festzinsanleihen .subpage-hero {
    background-image: url('https://images.pexels.com/photos/6801647/pexels-photo-6801647.jpeg?auto=compress&cs=tinysrgb&w=2400');
}

/* Fonds & ETFs */
body:has([href*="fonds-etfs.html"].active) .subpage-hero,
.page-fonds-etfs .subpage-hero {
    background-image: url('https://images.pexels.com/photos/6802042/pexels-photo-6802042.jpeg?auto=compress&cs=tinysrgb&w=2400');
}

/* Kompetenz - Competence */
body:has([href*="kompetenz.html"].active) .subpage-hero,
.page-kompetenz .subpage-hero {
    background-image: url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=2400');
}

/* Zuverlässigkeit - Reliability */
body:has([href*="zuverlaessigkeit.html"].active) .subpage-hero,
.page-zuverlaessigkeit .subpage-hero {
    background-image: url('https://images.pexels.com/photos/7621140/pexels-photo-7621140.jpeg?auto=compress&cs=tinysrgb&w=2400');
}

/* Regulierung - Regulation */
body:has([href*="regulierung.html"].active) .subpage-hero,
.page-regulierung .subpage-hero {
    background-image: url('https://images.pexels.com/photos/8349242/pexels-photo-8349242.jpeg?auto=compress&cs=tinysrgb&w=2400');
}

/* Anlagestrategien - Investment strategies */
body:has([href*="anlagestrategien.html"].active) .subpage-hero,
.page-anlagestrategien .subpage-hero {
    background-image: url('https://images.pexels.com/photos/7413915/pexels-photo-7413915.jpeg?auto=compress&cs=tinysrgb&w=2400');
}

/* Investmentansatz - Investment approach */
body:has([href*="investmentansatz.html"].active) .subpage-hero,
.page-investmentansatz .subpage-hero {
    background-image: url('https://images.pexels.com/photos/6801872/pexels-photo-6801872.jpeg?auto=compress&cs=tinysrgb&w=2400');
}

/* Verantwortung - Responsibility */
body:has([href*="verantwortung.html"].active) .subpage-hero,
.page-verantwortung .subpage-hero {
    background-image: url('https://images.pexels.com/photos/6801870/pexels-photo-6801870.jpeg?auto=compress&cs=tinysrgb&w=2400');
}

/* Kontakt - Contact */
body:has([href*="kontakt.html"].active) .subpage-hero,
.page-kontakt .subpage-hero {
    background-image: url('https://images.pexels.com/photos/3184357/pexels-photo-3184357.jpeg?auto=compress&cs=tinysrgb&w=2400');
}

/* Kundenbereich - Client area */
body:has([href*="kundenbereich.html"].active) .subpage-hero,
.page-kundenbereich .subpage-hero {
    background-image: url('https://images.pexels.com/photos/6801648/pexels-photo-6801648.jpeg?auto=compress&cs=tinysrgb&w=2400');
}

.subpage-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 1rem 0 1.5rem;
}

.subpage-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    max-width: 800px;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.highlight-section {
    padding: 3rem;
    background: rgba(26, 26, 46, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.highlight-list li {
    font-size: 1.1rem;
    color: var(--color-text);
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.highlight-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1.25rem;
}

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

.competency-card {
    padding: 2.5rem;
    background: rgba(26, 26, 46, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

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

.competency-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(15, 52, 96, 0.1) 100%);
    border-radius: 16px;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.competency-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.competency-card p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .subpage-title {
        font-size: 2.5rem;
    }

    .about-image-wrapper {
        padding-left: 20px;
        margin-top: 3rem;
    }

    .about-image-card {
        bottom: -15px;
        left: -15px;
        padding: 1.5rem 2rem;
    }

    .image-card-number {
        font-size: 1.75rem;
    }

    .image-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .subpage-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .about-image-wrapper {
        padding-left: 0;
    }

    .about-image-frame::before {
        display: none;
    }

    .about-image-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1.5rem;
    }

    .image-card-content {
        gap: 1rem;
    }
}
