/* =========================================
   1. GLOBAL VARIABLES (The Design System)
   ========================================= */
:root {
    /* --- BRAND COLORS --- */
    /* Primary Green (Trust, Nature) */
    --color-primary: #2E7D32;
    /* Dark Green (Hover states, Headings) */
    --color-primary-dark: #1B5E20;
    /* Light Green (Accents, Background tints) */
    --color-primary-light: #E8F5E9;

    /* --- NEUTRALS --- */
    --color-text-main: #2C3E50;
    /* Dark Blue-Grey (Softer than black) */
    --color-text-body: #546E7A;
    /* Medium Grey for paragraphs */
    --color-white: #ffffff;
    --color-border: #E0E0E0;
    /* Light grey for lines */

    /* --- LAYOUT --- */
    --container-width: 1200px;
    /* Max width on big screens */
    --header-height: 70px;
    /* Mobile Header Height */
    --radius: 6px;
    /* Rounded corners for cards/buttons */

    /* --- TYPOGRAPHY --- */
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   2. BASE TYPOGRAPHY & UTILITIES
   ========================================= */
body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    background-color: var(--color-white);
    /* Mobile Base Size */
    font-size: 16px;
    line-height: 1.6;

    /* Sticky Footer Setup */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1,
h2,
h3 {
    color: var(--color-primary-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* =========================================
   3. THE CONTAINER (The Grid System)
   ========================================= */
/* Mobile First: Full width with padding */
.container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

/* Desktop container handled in main media query at bottom */

/* =========================================
   4. GLOBAL BUTTONS
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
}

/* =========================================
   HEADER SECTION
   ========================================= */
.site-header {
    background-color: var(--color-white);
    height: var(--header-height);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--color-primary);
}

.site-header .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* --- LOGO STYLING --- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Space between icon and text */
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: 80px;

}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    letter-spacing: -0.5px;
}

/* --- MOBILE HAMBURGER ICON --- */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
}

/* --- MOBILE MENU (Default State) --- */
.main-nav {
    position: absolute;
    top: 100%;
    /* Pushes it right below the header */
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--color-border);

    /* Hidden by default on mobile */
    display: none;
}

/* We will toggle this class with Javascript later */
.main-nav.is-open {
    display: block;
}

.main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-nav a {
    color: var(--color-primary-dark);
    font-weight: 600;
    display: block;
    font-size: 1.1rem;
    transition: color 0.3s ease;

}

/* Mobile Dropdown Styling (Simplified) */
.dropdown-menu {
    display: none;
    /* Hidden on mobile to save space */
    padding-left: 20px;
    /* Indent child items */
    margin-top: 10px;
    border-left: 2px solid var(--color-border);
}

.dropdown-menu a {
    font-size: 14px !important;
    font-weight: 400 !important;
}

.dropdown-menu a:hover {
    border-bottom: 1px solid var(--color-primary);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    padding: 20px 0;
    padding-bottom: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.hero-text {
    text-align: center;
    order: 1;
}

.hero-image {
    order: 2;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-body);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    padding: 10px 0 20px 0;
    /* Reduced padding */
    margin-top: 10px;
    /* Reduced margin */
}

.services-box {
    background-color: var(--color-primary-light);
    border-radius: var(--radius);
    padding: 10px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0px;
    color: var(--color-primary-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--color-primary-dark);
}

.card-content p {
    color: var(--color-text-body);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s ease;
}

.card-link:hover {
    color: var(--color-primary-dark);
    gap: 10px;
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing-section {
    padding: 10px 0 20px 0;
    /* Reduced padding */
    margin-top: 10px;
    /* Reduced margin */
}

.pricing-box {
    background-color: var(--color-white);
    /* Or a very light grey if needed for contrast */
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Consistent shadow */
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

/* Mobile: Card View for Table */
.pricing-table thead {
    display: none;
}

.pricing-table tbody tr {
    display: block;
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid var(--color-border);
}

.pricing-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-primary-light);
    font-size: 0.9rem;
}

.pricing-table td:last-child {
    border-bottom: none;
}

.pricing-table td:before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-right: 15px;
}

.pricing-note {
    background-color: var(--color-primary-light);
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 15px;
    border-left: 4px solid var(--color-primary);
}

.pricing-note p {
    font-size: 0.9rem;
    color: var(--color-primary-dark);
    line-height: 1.5;
}

/* Zebra Striping (Desktop only really, handled below) */

/* =========================================
   STATISTICS SECTION
   ========================================= */
.statistics-section {
    padding: 10px 0 30px 0;
    /* Reduced top padding significantly */
    background-color: var(--color-white);
    margin-top: 0;
    /* Removed top margin */
}

.stats-box {
    position: relative;
    padding: 40px 20px;
    /* Adjusted padding for tighter look */
    color: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    /* Solid Green Background */
    z-index: 1;
}

.stats-title {
    position: relative;
    z-index: 2;
    color: var(--color-white) !important;
    /* Force white color on green bg */
    margin-bottom: 40px;
    font-size: 2rem;
    text-align: center;
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
}

.stat-item {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    /* White text confirmed */
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 5px 0;
    color: var(--color-primary-light);
}

.stat-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 250px;
    margin: 0 auto;
}

/* =========================================
   DESKTOP OVERRIDES (min-width: 992px)
   ========================================= */

/* =========================================
   FOOTER STYLES
   ========================================= */
.site-footer {
    background-color: var(--color-primary-dark);
    /* Dark Green Background */
    color: var(--color-white);
    padding: 10px 0 10px;
    margin-top: auto;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
}

.footer-col h3 {
    color: var(--color-primary-light);
    /* Light Green Heading */
    font-size: 0.9rem;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
    padding-bottom: 3px;
}

.footer-col p {
    font-size: 0.8rem;
    line-height: 1;
    margin-bottom: 10px;

}

.footer-col a {
    color: var(--color-white);
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-col a:hover {
    color: var(--color-white);
    text-shadow: 0 0 10px var(--color-primary-light);
    display: inline-block;
}

/* Map Button Style */
.map-btn {
    display: inline-block;
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.map-btn:hover {
    background-color: var(--color-primary);
    color: white;
}

/* Divider Line */
.footer-line {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 10px 0;
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.designer-credit a {
    color: var(--color-white);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col a:hover,
.designer-credit a:hover {
    color: var(--color-white);
    text-shadow: 0 0 10px var(--color-primary-light);
}

.social-icon {
    width: auto;
    height: 2rem;
    /* Matches text height better, allowing width to expand */
    vertical-align: middle;
    transition: transform 0.3s ease;
    margin-bottom: 3px;
    /* visual alignment fix */
}

.social-icon:hover {
    transform: scale(1.1);
}



.divider {
    margin: 0 5px;
    color: var(--color-primary-light);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================
   PAGE INTRO (Standard Page Titles)
   ========================================= */
.page-intro {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.page-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-primary-dark);
}

.page-intro p {
    color: var(--color-text-body);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* =========================================
   SERVICE DETAIL SECTION
   ========================================= */
.service-detail-section {
    padding: 10px 0;
    margin-top: 10px;
}

.service-box {
    background-color: var(--color-white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
    margin-bottom: 40px;
    /* Spacing between boxes */
}

.service-box:last-child {
    margin-bottom: 0;
}

.service-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* Reduced gap */
}

.service-text h1.service-title {
    font-size: 2rem;
    /* Reduced from 2.5rem */
    color: var(--color-primary-dark);
    margin-bottom: 15px;
    text-align: left;
}

.service-intro {
    font-size: 0.95rem;

    color: var(--color-text-body);
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-text h3 {
    font-size: 1.1rem;

    color: var(--color-primary-dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-list {
    margin-bottom: 10px;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: var(--color-text-body);
    font-size: 0.9rem;
    /* Added explicit smaller size */
    line-height: 1.3;
}

.feature-list li strong {
    color: var(--color-text-main);
}

.feature-list li:before {
    content: "•";
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

/* Gallery Grid */
.service-gallery {
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    object-fit: cover;
    aspect-ratio: 5/4;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

/* =========================================
   ACTIVITIES SECTION (Mirembajtja)
   ========================================= */
.activities-wrapper {
    background-color: var(--color-primary-light);
    padding: 20px;
    border-radius: var(--radius);
}

.activities-header {
    text-align: center;
    margin-bottom: 30px;
}

.activities-header h2 {
    margin: 0;
}

.activities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.activity-card {
    padding: 20px;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.activity-card p {
    text-align: center;
    font-weight: 500;
    margin: 0;
}

@media (min-width: 768px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .activities-wrapper {
        padding: 40px;
    }

    .activities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =========================================
   DESKTOP OVERRIDES (min-width: 992px)
   ========================================= */
@media (min-width: 992px) {

    /* --- CONTAINER --- */
    .container {
        max-width: var(--container-width);
        padding-left: 0;
        padding-right: 0;
    }

    /* --- HEADER --- */
    .site-header {
        height: 100px;
    }

    .logo img {
        height: 75px;
        width: 85px;
    }

    .logo-text {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    /* --- NAVIGATION --- */
    .mobile-toggle {
        display: none;
    }

    .main-nav {
        display: block !important;
        position: static;
        width: auto;
        padding: 0;
        box-shadow: none;
        border: none;
    }

    .main-nav ul {
        flex-direction: row;
        gap: 30px;
        align-items: center;
    }

    .main-nav a {
        font-size: 1rem;
        padding: 8px 0;
        position: relative;
    }

    .main-nav>ul>li>a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 2px;
        background-color: var(--color-primary);
        transition: width 0.3s ease;
    }

    .main-nav>ul>li>a:hover::after,
    .main-nav>ul>li>a.active::after {
        width: 100%;
    }

    /* --- DROPDOWNS --- */
    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        display: block;
        position: absolute;
        top: 100%;
        left: -15px;
        background: var(--color-white);
        min-width: 200px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: var(--radius);
        padding: 5px 0;
        border: 1px solid var(--color-border);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.2s ease;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu li a {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .dropdown-menu li a:hover {
        background-color: var(--color-primary-light);
        color: var(--color-primary-dark);
    }

    /* --- HERO --- */
    .hero-section {
        padding: 30px 0;
    }

    h1 {
        font-size: 3.5rem;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
    }

    .hero-text {
        text-align: left;
        flex: 1;
        order: 1;
    }

    .hero-image {
        flex: 1;
        order: 2;
    }

    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
        font-size: 1.25rem;
    }

    .cta-group {
        justify-content: flex-start;
    }

    /* --- SERVICES GRID --- */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* --- PRICING TABLE --- */
    .pricing-table thead {
        display: table-header-group;
    }

    .pricing-table tbody tr {
        display: table-row;
        border: none;
        box-shadow: none;
        margin-bottom: 0;
    }

    .pricing-table td {
        display: table-cell;
        padding: 15px;
        text-align: left;
        border-bottom: 1px solid var(--color-border);
    }

    .pricing-table td:before {
        display: none;
    }

    /* --- SERVICE DETAIL --- */
    .service-content-wrapper {
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        gap: 60px;
    }

    .service-text {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .service-text .btn {
        margin-top: auto;
        align-self: flex-start;
    }

    .service-gallery {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .gallery-grid {
        height: 100%;
        align-content: stretch;
    }

    /* --- PAGE INTRO --- */
    .page-intro {
        margin-top: 30px;
        margin-bottom: 10px;
        padding: 0;
    }

    .page-intro p {
        max-width: 100%;
    }

    /* --- CONTACT PAGE --- */
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: stretch;
        /* Forces equal height columns */
    }

    .contact-info-col,
    .contact-form-col {
        height: auto;
        /* Flex containers will stretch */
    }

    .contact-map-embed {
        flex-grow: 1;
        /* Pushes map to fill remaining space */
    }

}

/* Recycling Section Background */
.service-detail-section.recycling-section {
    padding: 0;
    margin-bottom: 0;
}

.recycling-section .service-box {
    background-color: var(--color-primary-light);
    border: none;
    /* Optional: remove border if bg is colored */
}

/* =========================================
   FAQ & INFORMATION PAGE STYLES
   ========================================= */
.faq-section {
    padding: 10px 20px;
    /* Matches service-sections padding + horizontal spacing */
    max-width: 900px;
    margin: 10px auto 40px auto;
    /* Top margin consistent with sections, bottom for footer spacing */
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h2 {
    color: var(--color-primary-dark);
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

details {
    background-color: var(--color-white);
    margin-bottom: 15px;
    border-radius: var(--radius);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

details[open] {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

summary {
    padding: 12px 20px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-text-dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    transition: background-color 0.2s;
}

summary::-webkit-details-marker {
    display: none;
}

summary:hover {
    background-color: #f0f0f0;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: bold;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(45deg);
}

.faq-content {
    padding: 20px;
    border-top: 1px solid #eee;
    background-color: var(--color-white);
    line-height: 1.6;
}

.faq-content ul {
    padding-left: 20px;
    margin-top: 10px;
}

.faq-content li {
    list-style-type: disc;
    margin-bottom: 5px;
}

/* Legal Framework Specific Styles */
.legal-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto 40px auto;
    background-color: #f4fcf6;
    /* Light green background */
    border-radius: var(--radius);
}

.legal-header {
    text-align: center;
    margin-bottom: 30px;
}

.legal-header h2 {
    color: var(--color-primary-dark);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.legal-header h3 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.legal-intro-box {
    background-color: var(--color-white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    line-height: 1.6;
}

.legal-intro-box ul {
    padding-left: 20px;
    margin: 15px 0;
}

.legal-intro-box li {
    list-style-type: disc;
    margin-bottom: 5px;
}

.responsibilities-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-primary-dark);
    font-weight: 700;
}

/* Responsibilities Grid/Table */
.resp-grid {
    border: 1px solid #ddd;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--color-white);
}

.resp-row {
    display: grid;
    grid-template-columns: 50px 200px 1fr;
    border-bottom: 1px solid #eee;
}

.resp-row:last-child {
    border-bottom: none;
}

.resp-index {
    background-color: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.resp-entity {
    background-color: #f9f9f9;
    padding: 20px;
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--color-primary-dark);
    border-right: 1px solid #eee;
}

.resp-details {
    padding: 20px;
}

.resp-details h4 {
    color: var(--color-primary-dark);
    margin-bottom: 10px;
    font-size: 1rem;
}

.resp-details ul {
    padding-left: 20px;
}

.resp-details li {
    list-style-type: disc;
    margin-bottom: 8px;
    line-height: 1.5;
    color: var(--color-text-body);
}

@media (max-width: 768px) {
    .resp-row {
        grid-template-columns: 1fr;
    }

    .resp-index {
        padding: 10px;
        justify-content: flex-start;
        padding-left: 20px;
    }

    .resp-index::after {
        content: ".";
    }

    .resp-entity {
        border-right: none;
        border-bottom: 1px solid #eee;
        background-color: #f9f9f9;
    }
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */
.contact-page-content {
    padding-bottom: 50px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* Reduced gap between cards on mobile */
}

/* Common Card Style */
.box-shadow-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Stronger aesthetic shadow */
    border: 2px solid rgba(46, 125, 50, 0.4);
    /* Common green border */
    display: flex;
    flex-direction: column;
    /* Ensure children stack and we can use flex properties */
}

/* Left Column Styles */
.contact-info-col {
    gap: 15px;
    background-color: #E8F5E9;
    /* Background override */
    padding: 20px;
}

.contact-item {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text-main);
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 12px;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-label {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: var(--color-primary-dark);
}

.contact-label .icon {
    font-size: 1.2rem;
    color: var(--color-primary);
}

.contact-sub-text {
    margin-top: 4px;
    margin-left: 32px;
    color: var(--color-text-main);
    font-size: 0.95rem;
    font-weight: 900;
}

.contact-value-bold {
    font-weight: 800;
    /* Extra bold */
    color: var(--color-text-main);
}

.contact-link {
    color: var(--color-text-main);
    font-weight: 900;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.contact-map-embed {
    margin-top: 5px;
    /* Reduced margin */
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for map */
    display: flex;
    flex-direction: column;
    position: relative;
    /* Needed for overlay */
}

.map-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: transparent;
    cursor: pointer;
}

.contact-map-embed iframe {
    flex-grow: 1;
    min-height: 250px;
    border: 0.5px solid rgba(0, 0, 0, 0.2);
}

.form-title {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    /* Using primary dark for title */
    margin-bottom: 8px;
}

.form-desc {
    color: var(--color-text-body);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Compact Layout for Name/Email */
.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

/* Compact Spacing */
.form-group.compact {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: 900;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--color-text-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid black;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--color-text-main);
    background-color: #fafafa;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.btn-submit.compact-btn {
    width: 100%;
    font-size: 1em;
    padding: 12px;
    margin-top: 5px;
}

/* Design Element to fill space */
.form-footer-decoration {
    margin-top: auto;
    padding-top: 25px;
}

.decoration-content {
    background-color: #f8fcf8;
    border: 1px dashed var(--color-primary-light);
    border-radius: var(--radius);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--color-text-body);
}

.decoration-icon {
    font-size: 1.5rem;
}

.decoration-content p {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}



/* =========================================
   NEWS (LAJME) PAGE
   ========================================= */
.news-page-content .container {
    max-width: var(--container-width);
}

.news-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: stretch;
    /* Stretch to align heights */
    margin-bottom: 40px;
}

.facebook-col,
.news-content-col {
    display: flex;
    flex-direction: column;
}

/* Titles */
.facebook-col h2,
.news-content-col h2 {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary-light);
    text-align: center;
}

/* Container Styles (Card Look) */
.news-table-container {
    background: var(--color-primary-light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
    /* flex-grow removed */
    display: flex;
    flex-direction: column;
}

.facebook-feed-container {
    padding: 0;
    border-bottom: 2px solid var(--color-primary-dark);


}

/* Table Styles - Remove card styles from table itself */
.news-table {
    width: 100%;
    border-collapse: collapse;
}

.news-table th,
.news-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.news-table th {
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 600;
}

.news-table tr:last-child td {
    border-bottom: none;
}

.news-table tr:hover {
    background-color: var(--color-primary-light);
}

.news-table td a {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: underline;
    word-break: break-all;
    /* Ensure long URLs don't break layout */
    font-size: 0.9rem;
}

.news-table td a:hover {
    color: var(--color-primary-dark);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .facebook-feed-container {
        max-width: 350px;
        margin: 0 auto;
        width: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

    }
}

/* =========================================
   FIX FOR CONTACT PAGE DESKTOP LAYOUT
   ========================================= */
@media (min-width: 992px) {
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: stretch;
    }

    .contact-info-col,
    .contact-form-col {
        height: auto;
    }

    .contact-map-embed {
        flex-grow: 1;
    }
}