:root {
    --primary-text: #2c3e50;
    --secondary-text: #1e3932;
    --background-light-green: #d4e9e2;
    --border-color: #dee2e6;
    --primary-brand-color: #cf4e4e;
    --white-color: #ffffff;
    --font-primary: 'Lato', sans-serif;
    --font-secondary: 'Oswald', sans-serif;
    --font-address: 'Roboto Condensed', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    color: var(--primary-text);
    background-color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 0;
}

p {
    font-size: 1.1rem;
    max-width: 45ch;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease;
    border: 1px solid var(--secondary-text);
    background-color: var(--secondary-text);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-text);
}

.btn:hover {
    transform: scale(1.05);
}

.main-header {
    padding: 1.5rem 0;
    margin-bottom: -1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 25px;
}

.promo-section {
    padding: 4rem 0;
    text-align: center;
}

.bg-light-green { background-color: var(--background-light-green); }

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    text-align: left;
}

.promo-grid.reverse {
    direction: rtl;
}

.promo-grid.reverse > * {
    direction: ltr;
}

.promo-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.promo-text h2 {
    color: var(--secondary-text);
}

.promo-text p {
    color: var(--primary-text);
}

.main-footer {
    padding: 2rem 0;
    text-align: left;
    border-top: 1px solid var(--border-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-text);
    color: var(--white-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--primary-text);
    text-decoration: none;
    font-weight: 700;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 0.9rem;
    color: #6c757d;
}

@media (max-width: 992px) {
    h2 {
        font-size: 2rem;
    }
    .promo-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    .promo-section {
        padding: 3rem 0;
    }
    .promo-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .promo-grid.reverse {
        direction: ltr;
    }
    .promo-image {
      margin-top: 2rem;
    }
    .promo-grid:not(.reverse) .promo-text {
      order: 2;
    }
     .promo-grid:not(.reverse) .promo-image {
      order: 1;
    }
    .promo-grid.reverse .promo-text {
      order: 1;
    }
    .promo-grid.reverse .promo-image {
      order: 2;
    }
    .promo-text p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    h2 {
        font-size: 1.8rem;
    }
    p {
        font-size: 1rem;
    }
    .footer-links {
        align-items: center;
    }
    .copyright {
        text-align: center;
    }
}