/* ============================================
   National Border Collie - Main Stylesheet
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   Centralized color and design token system
   ============================================ */
:root {
    /* Brand Colors */
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #4a7c59;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    
    /* Utility Colors */
    --border-color: #dee2e6;
    --text-dark: #333333;
    --text-light: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;

    /* Button Gradient System - Brown Variation */
    --btn-brown-start: #8B4513;
    --btn-brown-end: #D2691E;
    --btn-brown-hover-start: #A0522D;
    --btn-brown-hover-end: #CD853F;
    --btn-brown-shadow: rgba(139, 69, 19, 0.3);

    /* Button Gradient System - Tan Variation */
    --btn-tan-start: #A0522D;
    --btn-tan-end: #CD853F;
    --btn-tan-hover-start: #8B4513;
    --btn-tan-hover-end: #B8860B;
    --btn-tan-shadow: rgba(160, 82, 45, 0.3);

    /* Button Gradient System - Amber Variation */
    --btn-amber-start: #696969;
    --btn-amber-end: #A0522D;
    --btn-amber-hover-start: #556B2F;
    --btn-amber-hover-end: #8B4513;
    --btn-amber-shadow: rgba(105, 105, 105, 0.3);

    /* Button Gradient System - Green Variation */
    --btn-green-start: #228B22;
    --btn-green-end: #006400;
    --btn-green-hover-start: #32CD32;
    --btn-green-hover-end: #228B22;
    --btn-green-shadow: rgba(34, 139, 34, 0.3);
}

/* ============================================
   GLOBAL RESETS & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* Base link styles */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.15);
    padding: 1rem 0;
    border-bottom: 1px solid #adb5bd;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff !important;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffffff !important;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: transparent;
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

.hero h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    color: #ffffff;
}

/* Benefit-style hero title modifier */
.hero-title.hero-title--benefit,
.benefits-section .benefit-heading {
    font-size: 2.25rem;
    color: #6d6d6d;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero .btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

.hero-underline {
    width: 100%;
    height: 4px;
    background-color: #CD853F;
    margin: 0.5rem auto 0;
}

.hero-image img {
    border-radius: 6px;
    width: 100%;
    object-fit: cover;
}

/* ============================================
   SECTIONS & PANELS
   ============================================ */
section {
    padding: 2rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.welcome-section {
    background-color: #ffffff;
}

.welcome-panel {
    border: 4px solid #83a846;
    padding: 1.5rem;
    font-size: 0.9rem;
    color: #4a4a4a;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.welcome-panel a {
    color: #4a4a4a;
    text-decoration: underline;
}

/* ============================================
   CARDS
   Standard card styling with hover effects
   ============================================ */
.card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.card-img-top {
    border-radius: 8px 8px 0 0;
    width: 100%;
    height: auto;
    object-fit: none;
}

.card-title {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   BENEFIT CARDS SYSTEM
   Cards used on homepage and owner sections
   ============================================ */
.benefits-section {
    text-align: center;
}

.benefits-section .benefit-divider {
    width: 100%;
    height: 4px;
    background-color: #CD853F;
    border-radius: 999px;
    margin: 0.5rem auto 1.5rem;
}

/* Flexbox-based equal height system for benefit cards */
.benefits-section .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.benefits-section .row > [class*="col-"] .benefit-card {
    flex: 1;
}

.benefit-card {
    padding: 1.25rem 1.5rem 1.5rem;
    color: var(--text-dark);
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    border-radius: 12px;
    border: 1px solid rgba(44,95,45,0.06);
    position: relative;
    overflow: hidden;
}

.benefit-card h3 {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.2rem;
}

.benefit-card .card-body {
    padding-top: 1rem;
}

.benefit-card h5.card-title { 
    font-size: 1.05rem; 
    margin-bottom: 0.5rem; 
    text-transform: none; 
}

.benefit-card .card-text { 
    font-size: 0.92rem; 
    line-height: 1.5; 
    color: var(--text-dark); 
}

.benefit-card p {
    max-width: 320px;
    margin: 0 auto;
}

/* Benefit card icons */
.benefit-card .bi {
    background: #ffffff;
    display: inline-grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    font-size: 1.8rem;
    margin: 0 auto 0.75rem;
}

/* Large icon size for feature cards */
.bi.benefit-icon-lg {
    font-size: 2.5rem;
}

/* Benefit card images */
.benefit-image {
    width: 230px;
    height: 230px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #f4f4f4;
    background-color: #ffffff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-image-square {
    height: 230px;
    width: 260px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-accent {
    width: 100px;
    height: 4px;
    background-color: #CD853F;
    margin: 0.5rem auto 1rem;
    border-radius: 999px;
}

/* Benefit title color variations */
.benefit-title-teal { color: #018289; }
.benefit-title-blue { color: #006d99; }
.benefit-title-cyan { color: #01a89d; }

/* Icon color variations */
.icon-color-wheat { color: #BDB76B; }
.icon-color-tan { color: #CD853F; }
.icon-color-burlywood { color: #DEB887; }
.icon-color-teal { color: #018289; }

/* ============================================
   LISTS & LIST ITEMS
   ============================================ */
/* Modern two-column icon list used in cards */
.modern-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1rem;
}

.modern-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.modern-list li .bi {
    color: var(--primary-color);
    background: rgba(44,95,45,0.08);
    border-radius: 50%;
    padding: 0.35rem;
    min-width: 1.5rem;
    min-height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.modern-list.small { 
    font-size: 0.9rem; 
    font-weight: 500; 
}

/* Flex layout for list items with icons */
.modern-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.modern-list-item i.bi {
    font-size: 1.25rem;
    min-width: 28px;
    display: inline-block;
    margin-top: 2px;
}

.modern-list-item div { 
    font-weight: 600; 
}

/* ============================================
   BUTTONS & CALL-TO-ACTION
   Shared button animation system using pseudo-elements
   ============================================ */
.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: var(--accent-color);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* Modern CTA Button Base - Brown (Main variation with largest padding) */
.modern-cta-btn {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--btn-brown-start) 0%, var(--btn-brown-end) 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px var(--btn-brown-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

/* Animated shine effect for all modern CTA buttons */
.modern-cta-btn::before,
.modern-cta-btn-tan::before,
.modern-cta-btn-amber::before,
.modern-cta-btn-green::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.modern-cta-btn:hover::before,
.modern-cta-btn-tan:hover::before,
.modern-cta-btn-amber:hover::before,
.modern-cta-btn-green:hover::before {
    left: 100%;
}

.modern-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.4);
    background: linear-gradient(135deg, var(--btn-brown-hover-start) 0%, var(--btn-brown-hover-end) 100%);
}

.modern-cta-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--btn-brown-shadow);
}

/* Modern CTA Button - Tan Variation */
.modern-cta-btn-tan {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--btn-tan-start) 0%, var(--btn-tan-end) 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px var(--btn-tan-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.modern-cta-btn-tan:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(160, 82, 45, 0.4);
    background: linear-gradient(135deg, var(--btn-tan-hover-start) 0%, var(--btn-tan-hover-end) 100%);
}

.modern-cta-btn-tan:active {
    box-shadow: 0 4px 15px var(--btn-tan-shadow);
}

/* Modern CTA Button - Amber Variation */
.modern-cta-btn-amber {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--btn-amber-start) 0%, var(--btn-amber-end) 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px var(--btn-amber-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.modern-cta-btn-amber:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(105, 105, 105, 0.4);
    background: linear-gradient(135deg, var(--btn-amber-hover-start) 0%, var(--btn-amber-hover-end) 100%);
}

.modern-cta-btn-amber:active {
    box-shadow: 0 4px 15px var(--btn-amber-shadow);
}

/* Modern CTA Button - Green Variation */
.modern-cta-btn-green {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--btn-green-start) 0%, var(--btn-green-end) 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px var(--btn-green-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.modern-cta-btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 139, 34, 0.4);
    background: linear-gradient(135deg, var(--btn-green-hover-start) 0%, var(--btn-green-hover-end) 100%);
}

.modern-cta-btn-green:active {
    box-shadow: 0 4px 15px var(--btn-green-shadow);
}

/* ============================================
   FORMS
   ============================================ */
.form-control {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 95, 45, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-form {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
}

.contact-info {
    padding: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    border-top: 1px solid #adb5bd;
    color: rgba(255,255,255,0.8);
    padding: 1rem 0;
    margin-top: 2rem;
}

footer a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}

footer .footer-nav-links {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
    text-align: right;
    width: 100%;
}

.site-footer .footer-section {
    display: flex;
    align-items: center;
    min-height: 100%;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

.site-footer .footer-copy {
    margin: 0;
    font-size: 0.85rem;
}

.site-footer .footer-section--address {
    justify-content: center;
}

.site-footer .footer-section--address .footer-copy {
    text-align: center;
    width: 100%;
}

.site-footer .footer-section--address .footer-copy a {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   HEALTH SECTION
   Section with background image and overlay
   ============================================ */
.health-section {
    background-image: url('../images/health-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* White overlay for better text readability */
.health-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

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

.health-section h2,
.health-section p,
.health-section .health-callout {
    color: #2c3e50;
}

.health-section .benefit-card {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Health callout component */
.health-callout {
    background: transparent;
    border-radius: 1rem;
    padding: 1.5rem;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.health-callout .health-line {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.5rem 1rem;
    color: #000000;
    font-weight: 600;
    font-size: 1rem;
}

.health-callout .health-line span {
    min-width: 0;
}

.health-callout .health-line a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.health-callout .health-callout-action {
    padding-top: 0.5rem;
}

.health-callout .health-callout-action .modern-cta-btn-amber {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-size: 1.05rem;
}

.health-line.health-callout-action {
    grid-template-columns: 1fr;
}

.health-line.health-callout-action .modern-cta-btn-amber {
    width: 100%;
    justify-content: center;
}

/* ============================================
   BREEDER SECTION
   ============================================ */
.breeder-cta-section .modern-cta-btn-green,
.breeder-cta-section .modern-cta-btn-tan {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.breeder-cta-section .modern-cta-btn-tan {
    margin-bottom: 0;
}

/* ============================================
   IMAGES
   ============================================ */
.sidebar-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0.75rem auto;
    display: block;
    border-radius: 8px;
}

/* ============================================
   FEATURE BOXES
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-box {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-box:hover i {
    color: #ffffff;
}

.feature-box h4 {
    margin-bottom: 1rem;
}

.feature-box:hover h4 {
    color: #ffffff;
}

/* ============================================
   ALERT MESSAGES
   ============================================ */
.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.spinner {
    border: 3px solid rgba(0,0,0,0.1);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
/* Color utilities */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-light { background-color: var(--light-color) !important; }

/* Margin utilities */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

/* Padding utilities */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* Accessibility utility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */
@media (max-width: 768px) {
    /* Typography scaling */
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    /* Section spacing */
    section {
        padding: 2rem 0;
    }
    
    /* Benefit images */
    .benefit-image,
    .benefit-image-square {
        width: 200px;
        height: 200px;
    }
    
    /* Grid layouts */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Health callout responsive layout */
    .health-callout .health-line {
        grid-template-columns: 1fr;
    }
    
    .health-callout .health-line a {
        white-space: normal;
    }
}

/* Tablet and up adjustments */
@media (min-width: 768px) {
    .hero-title,
    .hero-title.hero-title--benefit,
    .benefits-section .benefit-heading {
        max-width: 930px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
}

/* Responsive breeder CTA section */
@media (max-width: 991.98px) {
    .breeder-cta-section .col-lg-5 {
        margin-top: 2rem;
    }
}
