/*
Theme Name: ATTPL Agriculture
Description: Professional WordPress theme for ATTPL Agriculture - Healthy India Prosperous Farmer Initiative
Version: 1.0
Author: ATTPL Group
Text Domain: attpl-agriculture
*/

/* Import Google Fonts for Hindi Support */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FFFFFF;
}

/* Hindi Text Styling */
.hindi-text {
    font-family: 'Noto Sans Devanagari', Arial, sans-serif;
}

/* Color Variables */
:root {
    --primary-maroon: #540800;
    --primary-yellow: #F5C842;
    --secondary-green: #4A7C59;
    --light-gray: #555555;
    --bg-cream: #FDF6E3;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-maroon);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #400600;
}

/* WordPress Specific Styles */
.wp-block-image {
    margin: 0;
}

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

/* Header Styles */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-maroon);
}

.site-logo img {
    height: 50px;
    width: 50px;
    margin-right: 15px;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    color: var(--primary-maroon);
}

.logo-text p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.current {
    color: var(--primary-maroon);
}

.nav-menu a.current::after,
.nav-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-yellow);
}

.vendor-btn {
    background: var(--primary-yellow);
    color: #000;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.vendor-btn:hover {
    background: #e6b53a;
    transform: translateY(-1px);
    color: #000;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-maroon);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f0f9f0 0%, #ffffff 50%, #fffbf0 100%);
    padding: 120px 0 80px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-maroon);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content .highlight {
    color: var(--secondary-green);
}

.hero-content p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stats-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-left: 4px solid var(--primary-yellow);
}

.stats-card .number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-maroon);
}

.stats-card .label {
    font-size: 0.9rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background: #e6b53a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 200, 66, 0.3);
}

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

.btn-secondary:hover {
    background: #400600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(84, 8, 0, 0.3);
}

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

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

/* Section Styles */
.section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-maroon);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    background: var(--primary-maroon);
}

.card-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-maroon);
    transition: all 0.3s ease;
}

.card:hover .card-icon svg {
    fill: white;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-maroon);
    margin-bottom: 15px;
    text-align: center;
}

.card p {
    color: #666;
    line-height: 1.6;
    text-align: center;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 30px;
}

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

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Sister Concern Section */
.sister-concern {
    background: white;
}

.sister-concern-content {
    background: linear-gradient(135deg, #f0f9f0 0%, #fffbf0 100%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
}

.sister-concern-content h3 {
    color: var(--primary-maroon);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.sister-concern-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.focus-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.focus-area {
    text-align: center;
}

.focus-area-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.focus-area h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-maroon);
    margin-bottom: 10px;
}

.focus-area p {
    font-size: 0.9rem;
    color: #666;
}

/* Hindi Instructions Section */
.hindi-section {
    background: var(--bg-cream);
    border-top: 4px solid var(--primary-yellow);
}

.hindi-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-yellow);
    max-width: 900px;
    margin: 0 auto;
}

.hindi-content h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-maroon);
    margin-bottom: 30px;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #f7d666 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.app-link-box {
    background: #f8f9fa;
    border: 2px dashed var(--primary-yellow);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}

.app-link-box a {
    color: #0066cc;
    word-break: break-all;
    font-weight: 500;
}

.hindi-steps {
    margin: 30px 0;
}

.hindi-step {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-maroon);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 15px;
}

.step-content {
    flex: 1;
}

.disclaimer-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
}

.disclaimer-box p {
    font-size: 0.9rem;
    font-style: italic;
    color: #856404;
    margin: 0;
}

.urgent-box {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.urgent-box p {
    color: #721c24;
    font-weight: 600;
    margin: 0;
}

/* Services Grid with Images */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 100%);
}

.service-icon {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 48px;
    height: 48px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-maroon);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-maroon);
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-maroon);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Footer */
.site-footer {
    background: var(--primary-maroon);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.footer-contact {
    background: var(--primary-yellow);
    color: #000;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-maroon);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-maroon);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #e6b53a;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #7a1a00;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-navigation .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .stats-card {
        position: static;
        margin-top: 20px;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hindi-content {
        padding: 25px;
    }
    
    .hindi-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .card {
        padding: 20px;
    }
    
    .sister-concern-content {
        padding: 25px;
    }
    
    .focus-areas {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Core Objectives Section Styles */
.objectives-section {
    padding: 80px 0;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.objective-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

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

.objective-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: #f0f9f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-green);
    transition: all 0.3s ease;
}

.objective-card:hover .objective-icon {
    background: var(--primary-yellow);
    color: var(--primary-maroon);
}

.objective-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.objective-title h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-maroon);
    margin: 0;
}

.objective-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* 7-Point Strategy Section Styles */
.strategy-section {
    padding: 80px 0;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.strategy-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

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

.strategy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.strategy-number {
    width: 40px;
    height: 40px;
    background: var(--primary-maroon);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
}

.strategy-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-maroon);
    transition: all 0.3s ease;
}

.strategy-card:hover .strategy-icon {
    background: var(--primary-maroon);
    color: white;
}

.strategy-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-maroon);
    margin-bottom: 12px;
    line-height: 1.3;
}

.strategy-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Statistics Section Styles */
.stats-section {
    padding: 80px 0;
    color: white;
}

.stats-section .section-header h2 {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-yellow);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: white;
    font-size: 1rem;
    opacity: 0.9;
}

/* Vendor Partnership Section Styles */
.vendor-section {
    padding: 80px 0;
}

.vendor-partnership {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #f7d666 100%);
    border-radius: 16px;
    padding: 60px;
    text-align: center;
}

.vendor-header {
    margin-bottom: 50px;
}

.vendor-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-maroon);
    margin-bottom: 15px;
}

.vendor-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-maroon);
    margin-bottom: 20px;
}

.vendor-header p {
    font-size: 1.1rem;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.vendor-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 15px;
    color: var(--primary-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card p {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}

.vendor-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-maroon);
    color: var(--primary-maroon);
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-maroon);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Updates for New Sections */
@media (max-width: 768px) {
    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .strategy-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .vendor-benefits {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .vendor-partnership {
        padding: 40px 25px;
    }
    
    .vendor-header h2 {
        font-size: 2rem;
    }
    
    .vendor-header h3 {
        font-size: 1.3rem;
    }
    
    .vendor-cta {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
    }
    
    .vendor-header h2 {
        font-size: 1.8rem;
    }
}

/* Service Features Styles */
.service-features {
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #666;
}

.feature-item svg {
    flex-shrink: 0;
}

.feature-item span {
    line-height: 1.4;
}

/* Additional responsive styles for new sections */
@media (max-width: 768px) {
    .service-features {
        margin: 15px 0;
    }
    
    .feature-item {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
}