:root {
    --color-primary: #e63946;
    /* Vibrant Red/Fire */
    --color-secondary: #1d3557;
    /* Deep Blue/Professional */
    --color-accent: #f1faee;
    /* Off-white */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --spacing-container: 1200px;
    --spacing-section: 4rem;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: all 0.2s ease;
}

ul {
    list-style-position: inside;
}

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.site-header {
    padding: 1rem 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logos {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
.site-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.site-nav a {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem;
}

.site-nav a:hover {
    color: var(--color-primary);
}


/* Hero Section */
/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)), url('assets/hero-image-training-school.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 80px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(230, 57, 70, 0.2), transparent 40%);
    pointer-events: none;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    font-weight: 300;
    opacity: 0.9;
    font-size: 0.8em;
}

.eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hero-details .detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0.5rem;
}

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

.btn-primary:hover {
    background: #d62839;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: var(--spacing-section) 0;
    scroll-margin-top: 80px;
}

.alt-bg {
    background-color: var(--color-bg-alt);
}

.section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 2px;
}

/* Grid Layouts */
.grid-2-col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.grid-2-col>div h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.full-width {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Overview */
.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.highlight-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--color-primary);
}

.highlight-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #eee;
}

.highlight-box li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Criteria */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.criteria-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.criteria-item .points {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.criteria-item .label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-secondary);
}

/* Timeline */
.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 4px;
    background: #eee;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    background: white;
    padding: 0 1rem;
    min-width: 120px;
}

.step .date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(29, 53, 87, 0.3);
}

.step .event {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 0.95rem;
}

.timeline.highlight-section {
    background: #fafafa;
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
}

/* Footer */
.site-footer {
    background: var(--color-secondary);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
}

.footer-section p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section a {
    color: #ffd166;
    /* Gold/yellow for links on dark bg */
    text-decoration: underline;
}

.footer-section a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--color-secondary);
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-secondary);
    transition: all 0.3s ease;
    left: 0;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    top: 6px;
}

/* Active Hamburger */
.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .site-nav {
        display: none;
        width: 100%;
        padding-top: 1rem;
        border-top: 1px solid #eee;
        margin-top: 1rem;
        animation: fadeIn 0.3s ease;
    }

    .site-nav.active {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .site-nav a {
        display: block;
        padding: 0.8rem;
        width: 100%;
        text-align: center;
    }

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

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

    .hero-details {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        display: block;
        margin: 0.5rem auto;
        width: 100%;
        max-width: 300px;
    }

    .grid-2-col,
    .grid-4-col {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .timeline-steps {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .timeline-steps::before {
        display: none;
    }

    .step {
        display: flex;
        align-items: center;
        gap: 1rem;
        width: 100%;
        text-align: left;
        max-width: 400px;
    }

    .step .date {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

/* Module Cards */
.module-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.ucpm-note {
    font-style: italic;
    color: var(--color-primary);
    font-weight: 500;
    margin-top: 1rem;
}

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

.module-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(230, 57, 70, 0.2);
}

.module-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.module-number {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.module-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--color-secondary);
}

.module-body {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.module-body p {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.5;
}

.module-footer {
    display: flex;
    justify-content: flex-end;
}

.instructor-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: var(--color-secondary);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
    width: auto;
    height: auto;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: default;
}

.badge:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230, 57, 70, 0.3);
}

/* Venue Section */
.venue-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.venue-text h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.venue-map-row {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.map-wrapper {
    flex: 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: white;
}

.map-link {
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
}

.venue-logo-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 250px;
}

.venue-logo {
    max-width: 100%;
    height: auto;
    max-height: 150px;
}

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

.info-column {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.security-column {
    border-left: 4px solid var(--color-primary);
}

.info-list {
    list-style: none;
    margin-top: 1rem;
}

.info-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.info-list li::before {
    content: '•';
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.info-column h3 {
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.security-note {
    color: #e63946;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    background: rgba(230, 57, 70, 0.05);
    padding: 0.8rem;
    border-radius: 6px;
}

.accommodation-tip {
    text-align: center;
    font-style: italic;
    color: var(--color-text-light);
    margin-top: 2rem;
    background: #eef2f6;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

/* Expert Instruction Team */
/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
}

/* Expert Instruction Team */
.experts-column .experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 0;
}

.expert-card {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.headshot-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    outline: 1px solid #eee;
}

.headshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-info h3 {
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.expert-info .affiliation {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    min-height: auto;
}

.expert-info .specialization {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    padding: 0 0.5rem;
    color: var(--color-text);
    min-height: auto;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0077b5;
    transition: all 0.2s ease;
    padding: 8px;
    border-radius: 50%;
    background: rgba(0, 119, 181, 0.1);
}

.linkedin-link:hover {
    background: #0077b5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 119, 181, 0.3);
}

/* Adjust Modules Grid for Split Layout */
.modules-column .modules-grid {
    grid-template-columns: 1fr;
    /* Force 1 column in the split layout for readability on smaller widths */
}

@media (min-width: 1400px) {
    .modules-column .modules-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        /* Allow 2 cols on very large screens */
    }
}

/* Accordion Styles */
.accordion-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0;
    /* Remove default padding for accordion */
    overflow: hidden;
    margin-bottom: 1rem;
}

.accordion-header {
    padding: 1.5rem 2rem;
    margin: 0;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.2s ease;
}

.accordion-header:hover {
    background: #fcfcfc;
}

.header-main {
    flex: 1;
}

.header-main h3 {
    font-size: 1.1rem;
    margin: 0.2rem 0 0.5rem;
    color: var(--color-secondary);
}

.module-number {
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.instructor-badges-compact {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.instructor-badges-compact .badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    background: #f1f5f9;
    color: var(--color-text-light);
    border: 1px solid #e2e8f0;
}

.accordion-icon {
    margin-left: 1rem;
    color: var(--color-text-light);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.accordion-card.active {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.05);
}

.accordion-card.active .accordion-header {
    border-bottom: 1px solid #f0f0f0;
    background: #f8f9fa;
}

.accordion-card.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.content-inner {
    padding: 1.5rem 2rem 2rem;
}

/* Adjust Modules Grid for Split Layout */
.modules-column .modules-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1400px) {
    .modules-column .modules-grid {
        grid-template-columns: 1fr;
        /* Force 1 column stack always for accordion */
    }
}

/* Restructured Layout Styles (3-col Modules, 4-col Experts) */
.modules-grid-wrapper .modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.experts-section-wrapper {
    margin-top: 3rem;
    border-top: 1px solid #eee;
    padding-top: 3rem;
}

.experts-section-wrapper h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--color-primary);
}

.experts-section-wrapper .experts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Adjust accordion card for grid context */
.module-card.accordion-card {
    height: fit-content;
    /* Allow height to adapt */
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .modules-grid-wrapper .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experts-section-wrapper .experts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .modules-grid-wrapper .modules-grid,
    .experts-section-wrapper .experts-grid {
        grid-template-columns: 1fr;
    }
}

/* Participation & Financial Support Section */
.participation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.participation-column h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.participation-column .lead {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.requirement-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 4px;
}

.requirement-box h4 {
    margin-top: 0;
    color: #856404;
    font-size: 1.1rem;
}

.requirement-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #856404;
}

/* Criteria Table */
.criteria-table-wrapper {
    margin-top: 1.5rem;
    overflow-x: auto;
}

.criteria-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.criteria-table th {
    text-align: left;
    background: var(--color-bg-light);
    padding: 0.8rem;
    border-bottom: 2px solid #ddd;
    color: var(--color-text-dark);
}

.criteria-table td {
    padding: 0.8rem;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.criteria-table td.points {
    text-align: right;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
}

.criteria-table .sub-text {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-style: italic;
}

.note-box {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed #ddd;
}

/* Responsive Adjustments for Participation Grid */
@media (max-width: 900px) {
    .participation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Contact Section */
.contact-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-box .lead {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--color-text-dark);
}

.contact-details {
    font-size: 1.1rem;
}

.contact-link {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}