footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--light-text);
    transition: var(--transition);
}

.footer-links a:hover, .footer-links a.active {
    color: var(--primary-color);
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.cookie-content h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 15px;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-accept {
    background-color: var(--primary-color);
}

.btn-configure {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-configure:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* Thank You Page */
.thank-you {
    padding: 100px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.thank-you-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.thank-you-content .btn {
    margin-top: 30px;
}

/* Legal Pages (Privacy, Terms, Cookies) */
.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 30px 0 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p, .legal-content ul {
    margin-bottom: 15px;
    color: var(--gray-text);
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.legal-content strong {
    color: var(--text-color);
}

/* Contact Page */
.contact-page {
    padding: 60px 0;
}

.contact-page h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.contact-page > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .purpose-content {
        flex-direction: column;
    }
    
    .purpose-image {
        width: 100%;
        margin-top: 30px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: -1;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 101;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .packages-grid, .areas-grid, .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        width: 100%;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .thank-you {
        padding: 60px 0;
    }
    
    .legal-content {
        padding: 15px;
    }
}/* Reset and Base Styles */
:root {
    --primary-color: #5fca6c;
    --primary-dark: #4fa759;
    --secondary-color: #333;
    --light-bg: #f5f5f5;
    --dark-bg: #1e1e1e;
    --text-color: #333;
    --light-text: #fff;
    --gray-text: #666;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --container-width: 1200px;
}

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

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 15px;
}

section {
    padding: 60px 0;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.disabled {
    color: var(--gray-text) !important;
    cursor: not-allowed;
}

/* Header and Navigation */
header {
    background-color: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-color: var(--dark-bg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1600x900/?business');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Packages Section */
.packages {
    background-color: var(--light-bg);
}

.packages h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
}

.packages > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 30px;
    transition: var(--transition);
}

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

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.package-card ul {
    margin: 20px 0;
}

.package-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.package-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.package-card .btn {
    width: 100%;
}

/* Purpose Section */
.purpose {
    padding: 80px 0;
}

.purpose-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.purpose-text {
    flex: 1;
}

.purpose-image {
    flex: 1;
    height: 400px;
    background-image: url('https://source.unsplash.com/random/600x400/?office');
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
}

.purpose h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.purpose p {
    margin-bottom: 30px;
}

/* Strategic Areas Section */
.strategic-areas {
    background-color: var(--light-bg);
}

.strategic-areas h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
}

.strategic-areas > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.area-card {
    background-color: #fff;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
}

.area-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.areas-note {
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
}

.strategic-areas .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Articles Section */
.articles {
    padding: 80px 0;
}

.articles h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
}

.articles > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.article-card {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.article-card p {
    flex-grow: 1;
    margin-bottom: 20px;
}

.article-card .btn {
    align-self: flex-start;
}

/* FAQ Section */
.faq {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--gray-text);
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.contact-form {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.info-item {
    margin-bottom: 20px;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.info-item p {
    color: var(--gray-text);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 20px 0;
}