/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d6a5f;
    --secondary-color: #3d8b7c;
    --accent-color: #c9964d;
    --dark-color: #1a4d43;
    --light-color: #f0f5f3;
    --white: #ffffff;
    --text-color: #2c4a42;
    --border-color: #c8dcd7;
    --shadow: 0 4px 6px rgba(45, 106, 95, 0.12);
    --gradient-primary: linear-gradient(135deg, #2d6a5f 0%, #3d8b7c 100%);
    --gradient-gold: linear-gradient(135deg, #d4a55a 0%, #b8904a 100%);
}

body {
    font-family: 'Sarabun', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #ea580c;
    color: var(--white);
}

/* ===== Hero Section ===== */
.hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    opacity: 0.95;
}

.hero-date {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    background: var(--gradient-gold);
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-hero {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
}

/* ===== Section Styles ===== */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

/* ===== About Section ===== */
.about {
    background-color: var(--light-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* ===== Categories Section ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-card.featured {
    border-color: var(--secondary-color);
    border-width: 3px;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.category-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.distance {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 1.5rem 0;
}

.benefits {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.benefits li {
    padding: 0.5rem 0;
    color: var(--text-color);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #1e40af;
}

/* ===== News Section ===== */
.news {
    background-color: var(--light-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-date {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.read-more:hover {
    color: var(--accent-color);
}

/* ===== FAQ Section ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background-color: var(--light-color);
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #e5e7eb;
}

.faq-question h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* ===== Form Section ===== */
.form-section {
    background-color: var(--light-color);
    padding: 4rem 0;
    min-height: 100vh;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
}

/* Event Info Box */
.event-info-box {
    background: linear-gradient(135deg, #2d6a5f 0%, #3d8b7c 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(45, 106, 95, 0.2);
}

.event-info-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
}

.event-info-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.event-info-content p {
    margin: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.event-info-content strong {
    color: #c9964d;
}

.event-highlight {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1.5rem !important;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.deadline-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #c9964d;
}

.deadline-box h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.deadline-box p {
    margin: 0.5rem 0;
}

.highlight-date {
    color: #c9964d;
    font-weight: 700;
    font-size: 1.1rem;
}

.note-text {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 1rem !important;
    font-style: italic;
}

.form-section-group {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.form-section-group:last-of-type {
    border-bottom: none;
}

.section-heading {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--secondary-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group small {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Payment Info Box */
.payment-info {
    background-color: #dbeafe;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.payment-info h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.bank-info {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 8px;
}

.bank-info p {
    margin: 0.5rem 0;
}

/* Image Preview */
.image-preview {
    margin-top: 1rem;
    display: none;
}

.image-preview.show {
    display: block;
}

.image-preview img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Checkbox Group */
.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
}

.link-text {
    color: var(--primary-color);
    text-decoration: underline;
    margin: 0 0.25rem;
}

.link-text:hover {
    color: var(--accent-color);
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem 3rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-cancel {
    background-color: #6b7280;
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-cancel:hover {
    background-color: #4b5563;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p {
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== Logo Option Cards ===== */
.logo-option-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.radio-card {
    position: relative;
    cursor: pointer;
    display: block;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-card-content {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.radio-card:hover .radio-card-content {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 106, 95, 0.15);
}

.radio-card input[type="radio"]:checked + .radio-card-content {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, rgba(45, 106, 95, 0.05), rgba(255, 255, 255, 1));
    box-shadow: 0 8px 20px rgba(45, 106, 95, 0.2);
}

.radio-card input[type="radio"]:checked + .radio-card-content::after {
    content: '✓';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    animation: checkmark 0.4s ease;
}

.radio-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.radio-card-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.radio-card-content p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.logo-upload-section {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 15px;
    border: 2px dashed var(--border-color);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Sponsor Packages ===== */
.package-subtitle {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Poster Display */
.sponsor-poster {
    text-align: center;
    margin-bottom: 3rem;
}

.sponsor-poster img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(45, 106, 95, 0.15);
    transition: transform 0.3s ease;
}

.sponsor-poster img:hover {
    transform: scale(1.02);
}

.sponsor-poster.lazy-loading img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sponsor-poster.lazy-loaded img {
    opacity: 1;
}

.sponsor-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.package-card {
    position: relative;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(45, 106, 95, 0.18);
    border-color: var(--primary-color);
}

.package-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.package-card input[type="radio"]:checked + .package-content {
    border-color: var(--primary-color);
}

.package-card input[type="radio"]:checked ~ .package-content .package-badge {
    animation: pulse 1s ease-in-out;
    box-shadow: 0 6px 20px rgba(45, 106, 95, 0.3);
}

.package-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, rgba(45, 106, 95, 0.03), rgba(255, 255, 255, 1));
    box-shadow: 0 12px 30px rgba(45, 106, 95, 0.22);
}

.package-card.selected::after {
    content: '✓';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    animation: checkmark 0.4s ease;
    z-index: 10;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.package-content {
    text-align: center;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-badge {
    display: inline-block;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.package-badge.cohost {
    background: var(--gradient-primary);
}

.package-badge.platinum {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
}

.package-badge.gold {
    background: var(--gradient-gold);
}

.package-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0.5rem 0 1.5rem;
    letter-spacing: -0.5px;
}

.package-benefits {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    font-size: 0.85rem;
    line-height: 1.5;
}

.package-benefits li {
    padding: 0.6rem 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.package-benefits li:hover {
    background: rgba(45, 106, 95, 0.04);
    padding-left: 0.5rem;
}

.package-benefits li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: -0.15rem;
}

.package-benefits li:last-child {
    border-bottom: none;
}

.amount-display {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    border: none;
    box-shadow: 0 8px 20px rgba(45, 106, 95, 0.2);
    transition: all 0.4s ease;
}

.amount-display:empty::after {
    content: 'กรุณาเลือกแพคเกจสนับสนุน';
    background: var(--light-color);
    color: var(--text-color);
    display: block;
    padding: 2rem;
    border-radius: 15px;
    font-weight: 500;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .sponsor-packages {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .form-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-submit,
    .btn-cancel {
        width: 100%;
    }

    .sponsor-packages {
        grid-template-columns: 1fr;
    }

    .package-benefits {
        font-size: 0.9rem;
    }

    .package-price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .category-grid,
    .news-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        padding: 1.5rem;
    }

    .package-benefits {
        font-size: 0.85rem;
    }
}