/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #111111;
}

h2 {
    font-size: 2rem;
    color: #111111;
}

h3 {
    font-size: 1.5rem;
    color: #4c9e0d;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
}

/* Links */
a {
    color: #4c9e0d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffc400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #4c9e0d;
    color: white !important;
}

.btn-primary:hover {
    background-color: #3d7a0a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(76, 158, 13, 0.3);
}

.btn-secondary {
    background-color: #ffc400;
    color: #333 !important;
}

.btn-secondary:hover {
    background-color: #e6b000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 196, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #4c9e0d;
    border: 2px solid #4c9e0d;
}

.btn-outline:hover {
    background-color: #4c9e0d;
    color: white;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4c9e0d;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4c9e0d;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffc400;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #4c9e0d 0%, #2d5e08 100%);
    padding-top: 50px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Grid Layouts */
.info-grid,
.benefits-grid,
.services-grid,
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.achievements-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.info-card,
.benefit-item,
.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover,
.benefit-item:hover,
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-icon,
.benefit-icon,
.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.service-card li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4c9e0d;
    font-weight: bold;
}

/* Achievements */
.achievement-item {
    text-align: center;
    padding: 30px;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4c9e0d;
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #4c9e0d 0%, #2d5e08 100%);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
}

.newsletter h2 {
    color: white;
    margin-bottom: 15px;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4c9e0d;
}

.newsletter-form input {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    border-color: #ffc400;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 5px;
    color: #4c9e0d;
}

.contact-item a {
    color: #555;
    text-decoration: none;
}

.contact-item a:hover {
    color: #4c9e0d;
}

/* Footer */
.footer {
    background-color: #111111;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-section h3 {
    color: #ffc400;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section a:hover,
.footer-section a.active {
    color: #ffc400;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links img {
    width: 24px;
    height: 24px;
    transition: filter 0.3s ease;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4c9e0d;
    color: #bdc3c7;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #4c9e0d 0%, #2d5e08 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* Blog Styles */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.article-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.article-image {
    padding: 30px;
    text-align: center;
    background-color: #f8f9fa;
}

.article-image img {
    width: 80px;
    height: 80px;
}

.article-content {
    padding: 30px;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.date {
    color: #fff;
}

.category {
    color: #fff;
    font-weight: 600;
}

.article-content h2 {
    margin-bottom: 15px;
}

.article-content h2 a {
    color: #111111;
    text-decoration: none;
}

.article-content h2 a:hover {
    color: #4c9e0d;
}

.read-more {
    color: #4c9e0d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

/* Article Page Styles */
.article-header {
    background: linear-gradient(135deg, #4c9e0d 0%, #2d5e08 100%);
    color: white;
    padding: 120px 0 60px;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb span {
    color: #ffc400;
}

.article-header h1 {
    color: white;
    font-size: 2.5rem;
    margin: 20px 0 30px;
}

.article-header .article-image {
    text-align: center;
    padding: 0;
    background: none;
}

.article-header .article-image img {
    width: 100px;
    height: 100px;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-body h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #111111;
    border-bottom: 2px solid #ffc400;
    padding-bottom: 10px;
}

.article-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #4c9e0d;
}

.article-body ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 8px;
}

.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #4c9e0d;
    padding: 30px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.highlight-content h3 {
    color: #4c9e0d;
    margin-bottom: 10px;
}

.call-to-action {
    background: linear-gradient(135deg, #4c9e0d 0%, #2d5e08 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.cta-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.cta-content h3 {
    color: white;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.related-articles {
    background-color: #f8f9fa;
}

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

.related-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-3px);
}

.related-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.related-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.related-card a {
    color: #111111;
    text-decoration: none;
}

.related-card a:hover {
    color: #4c9e0d;
}

.related-card .date {
    color: #666;
    font-size: 0.9rem;
}

/* Legal Pages Styles */
.legal-content {
    background-color: #f8f9fa;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.legal-document h2 {
    color: #111111;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffc400;
    padding-bottom: 10px;
}

.legal-document h3 {
    color: #4c9e0d;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-document ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-document li {
    margin-bottom: 8px;
}

.company-info-box,
.contact-info-box,
.cookie-type-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #4c9e0d;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
}

.cookie-management-box {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #4c9e0d 0%, #2d5e08 100%);
    color: white;
    border-radius: 10px;
    margin: 30px 0;
}

.cookie-management-box p {
    color: rgba(255, 255, 255, 0.9);
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 120px 0 80px;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 30px;
}

.success-icon {
    width: 100px;
    height: 100px;
    filter: sepia(1) saturate(3) hue-rotate(35deg);
}

.thank-you-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.detail-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.detail-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: block;
}

.next-steps {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 10px;
    margin: 50px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4c9e0d 0%, #2d5e08 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.contact-info-reminder {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.contact-details {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.additional-info {
    background-color: #f8f9fa;
}

.newsletter-reminder {
    background: linear-gradient(135deg, #4c9e0d 0%, #2d5e08 100%);
    color: white;
}

.newsletter-reminder h2 {
    color: white;
}

.newsletter-reminder p {
    color: rgba(255, 255, 255, 0.9);
}

/* Cookie Banner and Modal */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #111111 0%, #4c9e0d 100%);
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.cookie-banner p {
    color: white;
    margin-bottom: 0;
}
footer p {
    color: white;
}
.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    max-width: 500px;
    width: 90%;
    border-radius: 10px;
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    background: linear-gradient(135deg, #4c9e0d 0%, #2d5e08 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: white;
    margin: 0;
}

.close {
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    background: none;
    border: none;
}

.modal-body {
    padding: 30px;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e1e8ed;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 10px;
}

.cookie-toggle input[type="checkbox"] {
    position: relative;
    width: 50px;
    height: 25px;
    appearance: none;
    background-color: #ccc;
    border-radius: 15px;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
    background-color: #4c9e0d;
}

.cookie-toggle input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle input[type="checkbox"]::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
    transform: translateX(25px);
}

.modal-footer {
    padding: 20px 30px;
    background-color: #f8f9fa;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 50px 20px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .article-body {
        padding: 0 20px;
    }
    
    .legal-document {
        padding: 30px;
    }
    
    .call-to-action {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-details {
        flex-direction: column;
        align-items: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .article-card {
        margin: 0 10px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-grid,
    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .legal-document {
        padding: 20px;
    }
    
    .thank-you-details,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .article-body {
        padding: 0;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .modal {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 50px 0;
    }
    
    .hero-content {
        color: #333;
    }
    
    .page-header {
        background: none;
        color: #333;
        padding: 50px 0 30px;
    }
    
    .page-header h1 {
        color: #333;
    }
}
