@import url('../fonts/garet.book.ttf');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Garet', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: #ffffff;
    color: #010101;
    font-feature-settings: 'liga' 1, 'kern' 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Base responsive font size */
    font-size: clamp(14px, 2.5vw, 16px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 4vw, 2rem);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(220, 31, 38, 0.2);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(220, 31, 38, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1rem);
}

.logo-image {
    width: clamp(150px, 20vw, 200px);
    height: clamp(37px, 5vw, 50px);
    background: url('../images/abcd-portal-logo.png') center/cover;
}

.logo-text {
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    font-weight: bold;
    color: #f7ad1a;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.3vw, 2px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 3vw, 2rem);
}

.nav-links a {
    color: #010101;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.nav-links a:hover {
    color: #dc1f26;
    background: rgba(247, 173, 26, 0.1);
}

.menu-toggle {
  display: none;
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  background: none;
  border: none;
  cursor: pointer;
  color: #010101;
}

/* ======= Mobile Navigation (Updated with Fade-In) ======= */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(220, 31, 38, 0.2);
    border-radius: 10px;
    padding: 0 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);

    /* Hidden state */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
  }

  .nav-links.show {
    max-height: 400px;
    opacity: 1;
    padding: 1rem 2rem;
  }

  .nav-links a {
    font-size: clamp(1rem, 3vw, 1.1rem);
  }
}

/* Hero Section */
.hero {
    height: fit-content;
    background: url('../images/hero-event-image-2386433849.jpg') center/contain;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    will-change: transform;
    padding-top: clamp(80px, 12vw, 100px);
    padding-bottom: clamp(80px, 12vw, 100px);
}

.hero-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 120%;
    height: 120%;
    background: url('../images/hero-event-image-2386433849.jpg') center/cover;
    will-change: transform;
    z-index: -2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(220, 31, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(247, 173, 26, 0.08) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: clamp(300px, 90vw, 800px);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    margin: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-welcome {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: clamp(2px, 0.5vw, 3px);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

/* Countdown Timer */
.countdown-container {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: clamp(1rem, 3vw, 1.5rem);
    margin: clamp(1.5rem, 3vw, 2rem) 0;
    backdrop-filter: blur(10px);
}

.countdown-title {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: #f7ad1a;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    text-transform: uppercase;
    letter-spacing: clamp(0.5px, 0.2vw, 1px);
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: rgba(247, 173, 26, 0.2);
    border: 1px solid rgba(247, 173, 26, 0.3);
    border-radius: 8px;
    padding: clamp(0.5rem, 2vw, 0.8rem) clamp(0.3rem, 1vw, 0.5rem);
    min-width: clamp(50px, 12vw, 65px);
    backdrop-filter: blur(5px);
}

.countdown-number {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 700;
    color: #ffffff;
    display: block;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.countdown-label {
    font-size: clamp(0.6rem, 1.5vw, 0.75rem);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: clamp(0.5px, 0.1vw, 1px);
    margin-top: 0.2rem;
}

.countdown-date {
    color: #f7ad1a;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    margin-top: clamp(0.5rem, 1.5vw, 0.8rem);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: clamp(0.8rem, 2vw, 1rem) clamp(2rem, 4vw, 2.5rem);
    background: linear-gradient(45deg, #dc1f26, #f7ad1a);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 31, 38, 0.4);
    text-transform: uppercase;
    letter-spacing: clamp(0.5px, 0.2vw, 1px);
    margin-top: clamp(1rem, 2.5vw, 1.5rem);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 31, 38, 0.6);
    background: linear-gradient(45deg, #f7ad1a, #dc1f26);
}

/* Sections */
.section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    background: #ffffff;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section:nth-child(even) {
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: clamp(2rem, 5vw, 3rem);
    color: #010101;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    position: relative;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: clamp(-10px, -2vw, -15px);
    left: 50%;
    transform: translateX(-50%);
    width: clamp(60px, 15vw, 100px);
    height: clamp(3px, 0.5vw, 4px);
    background: linear-gradient(90deg, #dc1f26, #f7ad1a);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    color: #666666;
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* About Event */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
}

.about-text {
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    line-height: 1.6;
    color: #444444;
}

.about-text h3 {
    color: #dc1f26;
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
    line-height: 1.3;
}

.about-image {
    background: linear-gradient(45deg, #dc1f26, #f7ad1a);
    height: clamp(150px, 25vw, 200px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(3rem, 6vw, 4rem);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(220, 31, 38, 0.3);
}

/* Speaker Cards */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2.5vw, 1.5rem);
}

.speaker-card {
    background: #ffffff;
    border: 2px solid rgba(220, 31, 38, 0.1);
    border-radius: 15px;
    padding: clamp(1.2rem, 3vw, 1.8rem);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(220, 31, 38, 0.1);
    min-height: clamp(280px, 40vw, 320px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.speaker-card:hover {
    transform: translateY(-10px);
    border-color: #dc1f26;
    box-shadow: 0 20px 40px rgba(220, 31, 38, 0.2);
}

.speaker-avatar {
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    background: linear-gradient(45deg, #f7ad1a, #dc1f26);
    border-radius: 50%;
    margin: 0 auto clamp(1rem, 2.5vw, 1.5rem) auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(220, 31, 38, 0.3);
    overflow: hidden;
}

.speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.speaker-name {
    font-size: clamp(1.1rem, 2.8vw, 1.4rem);
    color: #dc1f26;
    margin-bottom: clamp(0.3rem, 1vw, 0.5rem);
    font-weight: 600;
    line-height: 1.2;
}

.speaker-title {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #010101;
    margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
    line-height: 1.3;
}

.speaker-bio {
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    color: #666666;
    line-height: 1.4;
}

/* ========== Agenda Table ========== */
.agenda-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(220, 31, 38, 0.1);
}

.agenda-table {
    width: 100%;
    min-width: 800px; /* Prevents unwanted compression */
    border-collapse: collapse;
    margin: 0 auto;
    font-size: clamp(0.9rem, 2vw, 1rem);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.agenda-table thead {
    background: linear-gradient(90deg, #dc1f26, #f7ad1a);
    color: #fff;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 10;
}

.agenda-table th,
.agenda-table td {
    padding: clamp(0.8rem, 2vw, 1rem);
    text-align: left;
    border-bottom: 1px solid #eee;
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden;
}

.agenda-table tbody tr:hover {
    background: rgba(247, 173, 26, 0.08);
}

/* Time column */
.agenda-table th:first-child,
.agenda-table td:first-child {
    width: 140px;
    min-width: 140px;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    font-weight: 600;
    color: #dc1f26;
}

/* Activity column - allow wrapping here since it has the most content */
.agenda-table th:nth-child(2),
.agenda-table td:nth-child(2) {
    white-space: normal; /* Allow wrapping for activity content */
    min-width: 400px;
    max-width: 500px;
    line-height: 1.4;
}

/* Moderator column */
.agenda-table th:last-child,
.agenda-table td:last-child {
    width: 200px;
    min-width: 200px;
}

.agenda-table th {
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.agenda-table td {
    font-size: clamp(0.85rem, 1.9vw, 0.95rem);
    vertical-align: top;
}

/* Mobile Card Layout using CSS transformation */
@media (max-width: 480px) {
    .agenda-table-container {
        overflow: visible;
        box-shadow: none;
    }
    
    .agenda-table,
    .agenda-table thead,
    .agenda-table tbody,
    .agenda-table th,
    .agenda-table td,
    .agenda-table tr {
        display: block;
    }
    
    .agenda-table {
        min-width: auto;
        border-radius: 0;
    }
    
    .agenda-table thead {
        display: none; /* Hide table headers */
    }
    
    .agenda-table tbody tr {
        background: #fff;
        border: 2px solid rgba(220, 31, 38, 0.1);
        border-radius: 12px;
        margin-bottom: 1.5rem;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        position: relative;
    }
    
    .agenda-table tbody tr:hover {
        background: #fff;
    }
    
    .agenda-table td {
        border: none;
        padding: 0;
        text-align: left;
        white-space: normal;
        width: 100% !important;
        min-width: auto !important;
        max-width: none !important;
    }
    
    /* Time styling - first cell becomes header */
    .agenda-table td:first-child {
        background: linear-gradient(90deg, #dc1f26, #f7ad1a);
        color: white !important;
        font-weight: 600;
        font-size: 1.1rem;
        text-align: center;
        padding: 1rem;
        margin: 0;
    }
    
    /* Activity styling - second cell becomes main content */
    .agenda-table td:nth-child(2) {
        padding: 1.5rem;
        font-size: 1rem;
        line-height: 1.5;
        color: #333;
    }
    
    /* Moderator styling - third cell becomes badge */
    .agenda-table td:last-child {
        padding: 0.5rem 1.5rem 1.5rem 1.5rem;
    }
    
    .agenda-table td:last-child:not(:empty) {
        font-size: 0.9rem;
        color: #dc1f26;
        font-weight: 600;
        position: relative;
    }
    
    .agenda-table td:last-child:not(:empty)::before {
        content: "Moderator: ";
        color: #666;
        font-weight: normal;
    }
    
    .agenda-table td:last-child:empty {
        display: none;
    }
}

/* Better mobile table styling for 481px - 600px range */
@media (min-width: 481px) and (max-width: 600px) {
    .agenda-table {
        min-width: 700px; /* Reduce minimum width for smaller tablets */
        font-size: 0.85rem;
    }
    
    .agenda-table th,
    .agenda-table td {
        padding: 0.7rem 0.5rem;
    }
    
    .agenda-table th:first-child,
    .agenda-table td:first-child {
        width: 120px;
        min-width: 120px;
    }
    
    .agenda-table th:nth-child(2),
    .agenda-table td:nth-child(2) {
        min-width: 350px;
    }
    
    .agenda-table th:last-child,
    .agenda-table td:last-child {
        width: 160px;
        min-width: 160px;
    }
}

/* Resources Cards */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 40vw, 350px), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.resource-card {
    background: #ffffff;
    border: 2px solid rgba(247, 173, 26, 0.2);
    border-radius: 15px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(247, 173, 26, 0.1);
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: #f7ad1a;
    box-shadow: 0 15px 35px rgba(247, 173, 26, 0.2);
}

.resource-icon {
    width: clamp(50px, 10vw, 70px);
    height: clamp(50px, 10vw, 70px);
    background: linear-gradient(45deg, #dc1f26, #f7ad1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(220, 31, 38, 0.3);
}

.resource-title {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
    color: #dc1f26;
    font-weight: 600;
    line-height: 1.2;
}

.resource-description {
    color: #555555;
    line-height: 1.5;
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.resource-link {
    color: #dc1f26;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.resource-link:hover {
    color: #f7ad1a;
}

/* Footer */
.footer {
    background: #010101;
    padding: clamp(2rem, 5vw, 3rem) 0;
    text-align: center;
    border-top: 4px solid #dc1f26;
}

.footer p {
    color: #cccccc;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.5;
}

/* Responsive Breakpoints */

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .hero-content {
        margin: 0.5rem;
        padding: 1.5rem 1rem;
    }
    
    .countdown-timer {
        gap: 0.3rem;
    }
    
    .countdown-item {
        min-width: 45px;
        padding: 0.5rem 0.2rem;
    }
    
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

/* Large Mobile (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: clamp(2.5rem, 6vw, 3rem);
    }
}

/* Large Tablet/Small Desktop (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop (1201px+) */
@media (min-width: 1201px) {
    .speakers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* Additional Mobile Adjustments */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
    
    .hero-bg {
        position: fixed;
        transform: none !important;
    }
    
    .section {
        padding: clamp(2rem, 6vw, 4rem) 0;
    }
}

/* Smooth transitions for parallax */
@media (min-width: 769px) {
    .hero-bg {
        transition: transform 0.1s ease-out;
    }
    
    .hero-content {
        transition: transform 0.1s ease-out, opacity 0.2s ease-out;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-bg, .hero-content, .hero::before {
        transform: none !important;
        animation: none !important;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.scroll-progress {
    height: 100%;
    background: linear-gradient(90deg, #dc1f26, #f7ad1a);
    width: 0%;
    transition: width 0.1s ease;
}

/* Pulsing animation for urgent countdown */
.urgent {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        font-size: clamp(15px, 2.5vw, 17px);
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .countdown-container {
        padding: 1rem;
        margin: 1rem 0;
    }
}