/* --- Variables & Reset --- */
:root {
    --header-height: 4.5rem;

    /* Colors - ECOZAC Teal Palette */
    --first-color: #2B8A8A;
    /* Primary Teal */
    --first-color-light: #3A9B9B;
    /* Lighter teal for cards */
    --first-color-alt: #1F6B6B;
    /* Darker teal for depth */

    --accent-color: #3DBABA;
    /* Bright Teal accent */
    --accent-color-hover: #2B8A8A;

    --title-color: #0F172A;
    --text-color: #475569;
    --text-color-light: #94a3b8;
    --text-color-inverse: #e2e8f0;
    /* Light text for dark background */

    --body-color: #F8FAFC;
    /* Slate 50 - clean off-white */
    --container-color: #FFFFFF;

    --gradient-teal: linear-gradient(135deg, #2B8A8A 0%, #3DBABA 100%);

    /* Font and Typography */
    --body-font: 'Outfit', sans-serif;
    /* More elegant, less square than Inter */
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;

    /* Spacing */
    --mb-0-5: 0.5rem;
    --mb-0-75: 0.75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

    /* z-index */
    --z-fixed: 100;
}

@media screen and (min-width: 968px) {
    :root {
        --h1-font-size: 3.5rem;
        --h2-font-size: 2rem;
        --h3-font-size: 1.5rem;
        --normal-font-size: 1.125rem;
        --small-font-size: 1rem;
    }
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    /* Neutral dark background that complements teal */
    background: radial-gradient(circle at 50% 0%, #1a2332 0%, #0d1117 100%);
    color: var(--text-color-inverse);
    /* Changed to light text for dark bg */
    line-height: 1.6;
    background-attachment: fixed;
    /* Ensures background stays while scrolling */
}

h1,
h2,
h3 {
    color: #fff;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    /* Premium feel for headings */
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Reusable CSS Classes --- */
.container {
    max-width: 1024px;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.section {
    padding: 5rem 0 3rem;
}

.section-title {
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-2);
    text-align: center;
    color: #fff;
    /* Ensure section titles are white on dark bg */
}

.btn {
    display: inline-block;
    padding: 1rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-teal);
    color: #fff;
    box-shadow: 0 4px 12px rgba(43, 138, 138, 0.3);
}

.btn-primary:hover {
    background-color: var(--first-color-alt);
    box-shadow: 0 8px 24px rgba(43, 138, 138, 0.5);
    /* Stronger premium glow */
    transform: translateY(-3px);
    /* Slightly more lift */
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    /* White border for contrast */
    color: #fff;
    /* White text for contrast */
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--first-color);
    /* Dark text on hover */
}

/* Enhancing Gradients */
.text-gradient {
    /* Teal Gradient */
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* --- Header --- */
.header-container {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: rgba(43, 138, 138, 0.95);
    /* Teal background for visibility */
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.15);
    transition: .3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(61, 186, 186, 0.3);
    transition: 0.3s;
}

.logo span {
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(61, 186, 186, 0.5);
    transition: 0.3s;
}

.logo:hover {
    transform: translateY(-1px);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 0 0 25px rgba(61, 186, 186, 0.5);
}

.nav-link {
    font-weight: 500;
    color: #fff;
    transition: .3s;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    position: relative;
}

/* "Cajon" / Box Effect on Hover */
.nav-link:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.nav-link.active {
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.15);
}

.nav-toggle,
.nav-close {
    font-size: 1.5rem;
    color: var(--title-color);
    cursor: pointer;
    display: none;
    /* Hidden by default on desktop */
}

/* Mobile Menu */
@media screen and (max-width: 767px) {
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background-color: rgba(255, 255, 255, 0.1);
        width: 40px;
        height: 40px;
        border-radius: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 10px rgba(61, 186, 186, 0.2);
        cursor: pointer;
        transition: 0.3s;
    }

    .nav-toggle:active {
        background-color: rgba(255, 255, 255, 0.2);
        transform: scale(0.95);
    }

    .nav-menu {
        position: fixed;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 80%;
        height: 100vh;
        top: 0;
        right: -100%;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        padding: 5rem 2rem;
        border-radius: 2rem 0 0 2rem;
        transition: .4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 200;
    }

    .nav-link {
        color: var(--title-color);
        font-size: 1.25rem;
        font-weight: 600;
        display: block;
        padding: 0.5rem 0;
        transition: 0.3s;
    }

    .nav-link.active {
        color: var(--first-color);
        padding-left: 1rem;
        border-left: 3px solid var(--first-color);
        background-color: transparent;
    }

    .show-menu {
        right: 0;
    }

    .nav-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2rem;
        display: block;
        color: var(--title-color);
        transition: 0.3s;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        row-gap: 2rem;
    }

    .nav-link.btn-primary {
        display: block;
        text-align: center;
    }
}

@media screen and (min-width: 768px) {
    .nav-list {
        display: flex;
        column-gap: 2rem;
        align-items: center;
    }
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding-top: 8rem;
    /* Account for fixed header */
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-container {
    display: grid;
    gap: 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: var(--h1-font-size);
    margin-bottom: var(--mb-1);
    color: #fff;
    /* Ensure white */
}

.hero-description {
    margin-bottom: var(--mb-2);
    color: var(--text-color-inverse);
    /* Light text for dark bg */
    font-size: var(--normal-font-size);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-teal);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: auto;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-color-inverse);
    /* Lighter grey for better visibility */
}

/* Text Gradient for Hero Title */
.text-gradient {
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media screen and (min-width: 768px) {
    .hero-container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .hero-buttons {
        margin-bottom: 2rem;
    }
}

@media screen and (min-width: 1024px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Services Section --- */
.services-section {
    background-color: transparent;
    /* Transparent to show body gradient */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    /* Glassmorphism lighter */
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: .3s;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(43, 138, 138, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: var(--mb-1);
}

.service-title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-5);
    color: var(--title-color);
    /* Dark text inside card */
}

.service-description {
    font-size: var(--small-font-size);
    margin-bottom: var(--mb-1-5);
    color: var(--text-color);
    /* Dark text inside card */
}

.service-link {
    color: var(--first-color);
    font-weight: 600;
    font-size: var(--small-font-size);
    display: inline-flex;
    align-items: center;
    column-gap: 0.25rem;
    transition: .3s;
}

.service-link:hover {
    color: var(--accent-color);
}

.service-link i {
    font-size: 1rem;
    transition: .3s;
}

.service-link:hover i {
    transform: translateX(4px);
}


/* --- Plans Section --- */
.plans-section {
    background-color: transparent;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.plan-card {
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: .3s;
}

.plan-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Featured Plan Styling */
.plan-featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    z-index: 20;
    box-shadow: 0 8px 40px rgba(43, 138, 138, 0.15);
}

.plan-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-teal);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 30;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 2rem;
}

.plan-name {
    font-size: var(--h3-font-size);
    margin-bottom: 0.5rem;
    color: var(--title-color);
    /* Dark title */
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--first-color);
    /* Dark price */
}

.plan-period {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    /* Dark features text */
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--small-font-size);
}

.plan-features li i {
    color: var(--accent-color);
    font-size: 1rem;
}

.plan-features li.disabled {
    color: var(--text-color-light);
    text-decoration: line-through;
}

.plan-features li.disabled i {
    color: #cbd5e1;
}

.plan-btn {
    width: 100%;
    text-align: center;
}

/* --- Contact Section --- */
.contact-container {
    display: grid;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-subtitle {
    font-size: var(--h3-font-size);
    color: #fff;
    /* White subtitle on dark bg */
}

.contact-text {
    color: var(--text-color-inverse);
    /* Light text on dark bg */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.contact-label {
    display: block;
    font-size: var(--small-font-size);
    font-weight: 600;
    color: #fff;
    /* White labels */
}

.contact-value {
    color: var(--text-color-inverse);
    /* Light values */
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #f1f5f9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--first-color);
    transition: .3s;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--title-color);
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    outline: none;
    font-family: var(--body-font);
    transition: .3s;
}

.form-input:focus {
    border-color: var(--accent-color);
}

.form-textarea {
    height: 120px;
    resize: none;
}

.form-btn {
    width: 100%;
    border: none;
    font-size: 1rem;
}

/* --- Footer --- */
.footer {
    background-color: #1F6B6B;
    /* Darker teal, 2 tones down from primary */
    color: #f1f5f9;
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-description {
    font-size: var(--small-font-size);
    color: #94a3b8;
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-legal a {
    color: #cbd5e1;
    transition: .3s;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--accent-color);
    transform: translateX(4px);
    display: inline-block;
}

.footer-copy {
    text-align: center;
    border-top: 1px solid #334155;
    padding-top: 2rem;
    font-size: var(--small-font-size);
    color: #64748b;
}

@media screen and (min-width: 768px) {
    .contact-container {
        grid-template-columns: repeat(2, 1fr);
        align-items: start;
    }

    .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* --- Form Focus Styles (Premium Polish) --- */
.form-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(43, 138, 138, 0.1);
    outline: none;
}

.form-input {
    transition: 0.3s;
}

/* Service Modal Styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(15, 23, 42, 0.8);
    /* Dark Overlay */
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    /* Show as flex to center */
    opacity: 1;
}

.modal-content {
    background: radial-gradient(circle at 10% 20%, #1e293b 0%, #0f172a 90%);
    /* Dark Blue gradient to match theme */
    color: #fff;
    margin: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    width: 100%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--text-color-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-title {
    font-size: var(--h2-font-size);
    color: var(--accent-color);
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.modal-intro {
    font-size: var(--normal-font-size);
    color: var(--text-color-inverse);
    margin-bottom: 2rem;
}

.modal-subtitle {
    font-size: var(--h3-font-size);
    color: #fff;
    margin-bottom: 1rem;
}

.modal-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.modal-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.modal-list li i {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.modal-list li div {
    color: var(--text-color-inverse);
    font-size: var(--small-font-size);
}

.modal-list li strong {
    color: #fff;
    display: block;
    margin-bottom: 0.25rem;
}

.modal-cta {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.modal-cta p {
    margin-bottom: 1rem;
    color: var(--text-color-inverse);
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    /* Slightly darker green on hover */
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.my-float {
    margin-top: 16px;
}

/* Pulsing Animation */
@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: pulse-green 2s infinite;
}


/* --- Testimonials Section (Glassmorphism) --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-quote-icon {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    color: rgba(43, 138, 138, 0.2);
    /* Teal with low opacity */
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    color: var(--title-color);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-color-light);
}

/* --- News / Resources Section --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news-card {
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    border: 1px solid #e2e8f0;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.news-header {
    background-color: var(--first-color);
    color: #fff;
    padding: 1rem 1.5rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-body {
    padding: 1.5rem;
}

.news-body .btn-outline {
    border-color: var(--first-color);
    color: var(--first-color);
}

.news-body .btn-outline:hover {
    background-color: var(--first-color);
    color: #fff;
}

.news-list {
    list-style: none;
}

.news-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.news-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-date {
    font-size: 0.75rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.25rem;
}

.news-title {
    font-weight: 500;
    color: var(--title-color);
    display: block;
    margin-bottom: 0.25rem;
}

.news-link {
    font-size: 0.875rem;
    color: var(--first-color);
    font-weight: 500;
    text-decoration: underline;
}

/* Contact Form Utilities */
.btn-block {
    width: 100%;
    display: block;
}

.form-status {
    margin-top: 1rem;
    font-size: var(--small-font-size);
    font-weight: 500;
    text-align: center;
}