body {
    font-family: 'Inter', system-ui, sans-serif;
}

.hero {
    background: linear-gradient(rgba(16, 27, 5, 0.6), rgba(16, 27, 5, 0.6)),
    url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat fixed;
    color: #f5fcf0;
    text-align: center;
    padding: 6rem 2rem;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    display: inline-block;
    margin: 0 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn.primary {
    background: #378056;
    color: #f5fcf0;
}

.btn.primary:hover {
    background: #5d825a;
}

.btn.secondary {
    background: transparent;
    border: 2px solid #f5fcf0;
    color: #f5fcf0;
}

.btn.secondary:hover {
    background: rgba(245, 252, 240, 0.2);
}

.about {
    background: #f5fcf0;
    padding: 4rem 2rem;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    min-width: 280px;
}

.about-text h2 {
    color: #101b05;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: #5d825a;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-image img {
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.support {
    background: #eaf4eb;
    text-align: center;
    padding: 4rem 2rem;
}

.support h2 {
    color: #101b05;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.support p {
    color: #5d825a;
    margin-bottom: 2rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.support-card {
    background: #f5fcf0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.newsletter-section {
    background: #37807A;
    color: #f5fcf0;
    text-align: center;
    padding: 4rem 2rem;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    margin-bottom: 1rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.newsletter-form input {
    padding: 0.8rem;
    border: none;
    border-radius: 30px;
    width: 65%;
    max-width: 300px;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: #101b05;
    color: #f5fcf0;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #5d825a;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        max-width: 100%;
    }
}
.scheduler {
    background: #f5fcf0;
    color: #101b05;
    padding: 4rem 2rem;
}

.scheduler-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.scheduler h1 {
    color: #378056;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.scheduler p {
    color: #5d825a;
    text-align: center;
    margin-bottom: 2rem;
}

.form-row {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

input,
select {
    padding: 0.8rem 1rem;
    border: 1px solid #d5e6d5;
    border-radius: 10px;
    font-size: 1rem;
    background-color: #f9fbf9;
    color: var(--dark-green);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    appearance: none;
}

input[type="date"],
input[type="time"],
select {
    background-color: #ffffff;
    cursor: pointer;
    position: relative;
}

input[type="date"]:focus,
input[type="time"]:focus,
select:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(55, 128, 86, 0.25);
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    color: var(--accent-green);
    opacity: 0.9;
    cursor: pointer;
    border-radius: 50%;
    padding: 4px;
    transition: background 0.25s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover {
    background: rgba(55, 128, 86, 0.1);
}

select {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23378056' height='10' width='10' xmlns='http://www.w3.org/2000/svg'%3E<path d='M0 0 L5 5 L10 0'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 10px;
}

button.btn.primary {
    display: block;
    width: 100%;
    background: var(--accent-green);
    color: var(--light-green);
    border: none;
    padding: 0.9rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

button.btn.primary:hover {
    background: var(--mid-green);
    transform: translateY(-2px);
}

.confirmation {
    text-align: center;
    background: #edf6ee;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.hidden {
    display: none;
}
.news {
    padding: 4rem 2rem;
    background: #f3faef;
}

.news-header {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-heading {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.news-line {
    width: 50px;
    height: 4px;
    background: #234f32;
    display: block;
}

.news h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #234f32;
    margin: 0;
}

.news-view-more {
    font-size: 1.1rem;
    color: #234f32;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.news-view-more:hover {
    opacity: 0.7;
}

.news-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin-inline: auto;
}

.news-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 6px 22px rgba(0,0,0,0.12);
}

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

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

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
}

.read-more {
    position: absolute;
    inset: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
    color: #ffffff;
    border: 2px solid #ffffff;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.news-card:hover img {
    transform: scale(1.12);
}

.news-card:hover .overlay {
    background: rgba(0,0,0,0.35);
}

.news-card:hover .read-more {
    opacity: 1;
    transform: scale(1);
}

.news-content {
    padding: 1.5rem;
    text-align: left;
}

.news-content h3 {
    font-size: 1.6rem;
    color: #234f32;
}

.news-content p {
    margin-top: 0.4rem;
    color: #4c6b52;
    line-height: 1.4;
}


.section-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.section-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* NEWS HEADER SECTION */
.news-section-header {
    width: 100%;
    padding: 60px 0 20px;
}

.news-header-container {
    max-width: 1350px;
    width: 90%;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.news-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #101b05;
    margin: 0;
}

.news-view-more {
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    color: #378056; /* Accent green */
    transition: 0.25s ease;
}

.news-view-more:hover {
    color: #5d825a;
    text-decoration: underline;
}
.news-heading-block {
    display: flex;
    flex-direction: column;
    gap: 10px; /* space between line and title */
}

.news-heading-line {
    display: block;
    width: 50px;
    height: 4px;
    border-radius: 10px;
    background-color: #378056;
}

.news-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #101b05;
    margin: 0;
}

