<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.terms,
.cookie,
.return,
.disclaimer,
.refund,
.privacy {
  text-align: left;
  padding: 15rem 0;
}
/* Base styles */
html {
    font-size: 10px;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Palanquin', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.5rem;
    color: #1d2e22;
}

p {
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 0.8rem;
}

a {
    color: #1d2e22;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: inside;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Cookie popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.cookie-popup.hidden {
    display: none;
}

.cookie-content {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
}

.cookie-content h2 {
    color: #1d2e22;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

/* Button styles */
.btn-green {
    background-color: #a6e4b8;
    color: #1d2e22;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    cursor: pointer;
    font-family: 'Palanquin', sans-serif;
    display: inline-block;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.btn-green:hover {
    background-color: #8fd9a8;
    text-decoration: none;
}

/* Header */
header {
    background-color: #fff;
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

header h1 {
    margin: 0;
    color: #1d2e22;
    font-size: 2.4rem;
}

/* Sections */
section {
    padding: 4rem 2rem;
}

section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
}

/* Hero section */
.hero {
    background-color: #e9f7ec;
    text-align: center;
    padding: 4rem 2rem;
}

.hero h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
}

.hero-image {
    margin-top: 2rem;
}

/* Mission section */
.mission-content, .methodology-content {
    display: flex;
    flex-direction: column;
}

.mission-text {
    margin-bottom: 2rem;
}

/* Services section */
.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-item {
    width: 100%;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 0.8rem;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Packages section */
.packages-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.package-card {
    width: 100%;
    background-color: #fff;
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.package-card img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 0.8rem 0.8rem 0 0;
}

.package-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
}

.package-card ul {
    padding: 0 1.5rem 1.5rem;
}

.package-price {
    padding: 1.5rem;
    background-color: #e9f7ec;
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem;
}

/* Sectors section */
.sectors-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sector-item {
    width: 100%;
    margin-bottom: 2rem;
}

.sector-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Contact form */
.contact {
    background-color: #e9f7ec;
}

form {
    max-width: 60rem;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-family: 'Palanquin', sans-serif;
    font-size: 1.6rem;
}

/* Footer */
footer {
    background-color: #1d2e22;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #fff;
    margin: 0 1rem;
}

.footer-copyright {
    font-size: 1.4rem;
    opacity: 0.8;
}

/* Success page */
.success-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.success-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
}

.success-container h1 {
    font-size: 3rem;
    color: #1d2e22;
    margin-bottom: 2rem;
}

/* Media queries */
@media (min-width: 768px) {
    section {
        padding: 6rem 4rem;
    }

    .hero h2 {
        font-size: 3.2rem;
    }

    .mission-content, .methodology-content {
        flex-direction: row;
        align-items: center;
    }

    .mission-text {
        flex: 1;
        margin-right: 4rem;
        margin-bottom: 0;
    }

    .mission-image, .methodology-image {
        flex: 1;
    }

    .service-item {
        width: 48%;
    }

    .package-card {
        width: calc(33.333% - 2rem);
        margin-bottom: 0;
    }

    .sector-item {
        width: 48%;
    }

    .cookie-content {
        max-width: 60rem;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 8rem 6rem;
    }

    .hero-content {
        max-width: 80rem;
        margin: 0 auto;
    }

    .service-item {
        width: 31%;
    }

    .sector-item {
        width: 23%;
    }
}
.container{
  max-width: 120rem;
  padding: 0 2rem;
}</pre></body></html>