body {
    font-family: 'Lora', serif; /* Fallback for Merriweather/Lora */
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif; /* Fallback for Montserrat */
    color: #2E7D32;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

h1 {
    font-size: 2.5em;
    font-weight: 800; /* Extra-bold */
}

h2 {
    font-size: 1.8em;
    font-weight: 700; /* Bold */
}

h3 {
    font-size: 1.3em;
    font-weight: 500; /* Medium */
}

a {
    color: #2E7D32;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFD54F;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.full-width-section {
    width: 100%;
    padding: 60px 0;
}

.bg-primary-light {
    background-color: #E0F2F7;
}

.bg-accent-green {
    background-color: #2E7D32;
    color: #fff;
}

.bg-accent-grey {
    background-color: #757575;
    color: #fff;
}

/* Header */
.main-header {
    background-color: #E0F2F7;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    font-weight: 800;
    color: #2E7D32;
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: #2E7D32;
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #FFD54F;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    color: #FFD54F;
    font-size: 3.5em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3em;
    color: #FFD54F;
    margin-bottom: 15px;
}

.card h3 {
    margin-top: 0;
    color: #2E7D32;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #FFD54F;
    color: #333;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn:hover {
    background-color: #2E7D32;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

/* Two-column layout */
.two-column-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.two-column-section > div {
    flex: 1;
    min-width: 300px;
}

.two-column-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Lists */
ul, ol {
    margin-left: 20px;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

ul li::before {
    content: '•'; /* Custom bullet point */
    color: #FFD54F;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

table th, table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

table th {
    background-color: #2E7D32;
    color: #fff;
    font-weight: 600;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Timeline (CSS-generated) */
.timeline {
    position: relative;
    margin: 50px 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #FFD54F;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
    width: 50%;
    padding: 10px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #2E7D32;
    border: 2px solid #FFD54F;
    top: 15px;
    z-index: 1;
}

.timeline-item:nth-child(odd)::after {
    right: -8px;
}

.timeline-item:nth-child(even)::after {
    left: -8px;
}

.timeline-item h3 {
    margin-top: 0;
    color: #2E7D32;
}

/* FAQ */
.faq-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #2E7D32;
}

/* Footer */
.main-footer {
    background-color: #757575;
    color: #fff;
    padding: 40px 0;
    font-size: 0.9em;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    text-align: left;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #FFD54F;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
    padding-left: 0;
}

.footer-section ul li::before {
    content: none;
}

.footer-section a {
    color: #fff;
}

.footer-section a:hover {
    color: #FFD54F;
}

.footer-bottom-text {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.85em;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px 0;
    text-align: center;
    z-index: 10000;
    display: none; /* Hidden by default */
}

.cookie-banner .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9em;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-buttons .btn {
    padding: 8px 15px;
    font-size: 0.85em;
    background-color: #FFD54F;
    color: #333;
}

.cookie-buttons .btn:hover {
    background-color: #2E7D32;
    color: #fff;
}

/* Form Styling */
form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 40px auto;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

form input[type="email"],
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

form textarea {
    resize: vertical;
}

form button[type="submit"] {
    width: auto;
    padding: 12px 30px;
    background-color: #2E7D32;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

form button[type="submit"]:hover {
    background-color: #FFD54F;
    color: #333;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.form-disclaimer {
    font-size: 0.85em;
    color: #757575;
    margin-top: -10px;
    margin-bottom: 20px;
}

/* Blog page specific */
.blog-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-list li {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    padding-left: 0;
}

.blog-list li::before {
    content: none;
}

.blog-list li:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

.blog-list li a {
    display: block;
    color: #333;
    text-decoration: none;
}

.blog-list li img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.blog-list li h3 {
    margin: 15px;
    color: #2E7D32;
    font-size: 1.1em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        margin-top: 15px;
        flex-direction: column;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .two-column-section {
        flex-direction: column;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 40px;
        padding-right: 10px;
        text-align: left;
    }

    .timeline-item:nth-child(odd) {
        left: 0;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item:nth-child(odd)::after {
        left: 7px;
        right: auto;
    }

    .timeline-item:nth-child(even)::after {
        left: 7px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        min-width: unset;
        width: 100%;
    }

    .footer-section ul {
        text-align: center;
    }

    .cookie-banner .container {
        flex-direction: column;
    }
}
