/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.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-text h3 {
    margin-bottom: 10px;
    color: #ff9d00;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.primary {
    background: #ff9d00;
    color: white;
}

.cookie-btn.primary:hover {
    background: #ff4d00;
}

.cookie-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid #ff9d00;
}

.cookie-btn.secondary:hover {
    background: #ff9d00;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.cookie-modal.show {
    display: flex;
}

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

.cookie-modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    color: #ff9d00;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 20px;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 25px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #ff9d00;
}

input:checked + .slider:before {
    transform: translateX(25px);
}

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

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

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff9d00;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff9d00;
}

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

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding-top: 120px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #ff9d00, #ff4d00);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff9d00, #ff4d00);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 157, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 157, 0, 0.4);
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
}

/* Company Info */
.company-info {
    background: #f8f9fa;
}

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

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    color: #ff9d00;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Achievements */
.achievements {
    background: linear-gradient(135deg, #ff9d00, #ff4d00);
    color: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.achievement-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.achievement-item p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #ff9d00;
    box-shadow: 0 10px 30px rgba(255, 157, 0, 0.2);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Benefits */
.benefits {
    background: #f8f9fa;
}

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

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

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #ff9d00;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Q&A Section */
.qa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.qa-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ff9d00;
}

.qa-item h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #333, #555);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-info h2 {
    color: #ff9d00;
    font-size: 2.2rem;
    margin: 20px 0 15px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.newsletter-form button {
    background: linear-gradient(135deg, #ff9d00, #ff4d00);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 157, 0, 0.3);
}

/* Contact */
.contact {
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

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

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #333;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff9d00;
}

.contact-form button {
    width: 100%;
    background: linear-gradient(135deg, #ff9d00, #ff4d00);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 157, 0, 0.3);
}

/* Social Media */
.social-media {
    background: #333;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.social-media h3 {
    margin-bottom: 30px;
    color: #ff9d00;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ff9d00;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff9d00;
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff9d00;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #444;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 20px 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .qa-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .achievement-item h3 {
        font-size: 2.5rem;
    }

    .contact-form,
    .newsletter-form {
        padding: 20px;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr !important;
    }
    .article-header .article-meta {
    flex-direction: column;}
}

/* Blog Styles */
.blog-header {
    background: #f8f9fa;
    padding: 60px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

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

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

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.articles-grid .article-content {
    padding: 30px;
}

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

.article-date {
    color: #666;
}

.article-category {
    background: #ff9d00;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

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

.article-card h2 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-card h2 a:hover {
    color: #ff9d00;
}

.read-more {
    color: #ff9d00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ff4d00;
}

/* Article Page Styles */
.article-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.breadcrumb {
    margin-bottom: 20px;
    color: #666;
}

.breadcrumb a {
    color: #ff9d00;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-header {
    margin-bottom: 40px;
}

.article-header .article-meta {
    margin-bottom: 20px;
}

.article-read-time {
    background: #4CAF50;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.article-featured-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 20px;
}

.article-content {
    line-height: 1.8;
}

.article-content .lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid #ff9d00;
}

.article-content h2 {
    margin: 40px 0 20px;
    color: #333;
    display: flex;
    align-items: center;
}

.article-content ul, .article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

.info-box, .action-box, .cta-box {
    background: #f0f8ff;
    border: 2px solid #ff9d00;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.action-box {
    flex-direction: column;
    background: #e8f5e8;
    border-color: #4CAF50;
}

.cta-box {
    background: linear-gradient(135deg, #fff5e6, #fff0d9);
    border-color: #ff4d00;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.info-box h3, .action-box h3, .cta-box h3 {
    color: #333;
    margin-bottom: 10px;
}

.comparison-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.comparison-box h4 {
    color: #ff9d00;
    margin-bottom: 15px;
}

.environmental-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

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

.stat-icon {
    margin-bottom: 15px;
}

.stat-item h3 {
    color: #ff9d00;
    font-size: 2rem;
    margin-bottom: 10px;
}

.cost-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

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

.cost-item h4 {
    color: #ff9d00;
    margin-bottom: 15px;
}

.lifecycle-chart, .comparison-table {
    margin: 30px 0;
}

.chart-item, .comparison-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.chart-label {
    min-width: 150px;
    font-weight: 500;
}

.chart-bar {
    flex: 1;
    height: 25px;
    background: #eee;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.chart-fill {
    height: 100%;
    border-radius: 12px;
    transition: width 0.5s ease;
}

.chart-value {
    min-width: 80px;
    font-weight: 600;
    color: #333;
}

.emission-bar {
    height: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.article-tags {
    margin: 40px 0 20px;
}

.article-tags h4 {
    color: #333;
    margin-bottom: 15px;
}

.tag {
    display: inline-block;
    background: #ff9d00;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 10px;
    margin-bottom: 5px;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
    gap: 15px;
}

.article-navigation a {
    color: #ff9d00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.article-navigation a:hover {
    color: #ff4d00;
}

.back-to-blog {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    border: 2px solid #ff9d00;
}

.back-to-blog:hover {
    background: #ff9d00;
    color: white !important;
}

.nav-menu .active {
    color: #ff9d00 !important;
    font-weight: 600;
}

/* Legal Pages Styles */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
    background: #f8f9fa;
    border-radius: 15px;
}

.legal-icon {
    margin-bottom: 20px;
}

.legal-intro {
    font-size: 1.2rem;
    color: #666;
    margin: 20px 0;
}

.legal-date {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.legal-content {
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 40px;
    padding: 0;
    border-bottom: 1px solid #eee;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.legal-section h3 {
    color: #ff9d00;
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

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

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff9d00;
    margin: 20px 0;
}

.cookie-category {
    background: white;
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    border-color: #ff9d00;
    box-shadow: 0 5px 15px rgba(255, 157, 0, 0.1);
}

.cookie-category h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.cookie-table {
    overflow-x: auto;
    margin: 20px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background: #ff9d00;
    color: white;
    font-weight: 600;
}

.cookie-table tr:hover {
    background: #f8f9fa;
}

.cookie-controls {
    text-align: center;
    margin: 20px 0;
}

.third-party-cookie {
    background: #f0f8ff;
    border: 2px solid #4CAF50;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
}

.third-party-cookie h4 {
    color: #333;
    margin-bottom: 10px;
}

.third-party-cookie a {
    color: #ff9d00;
    text-decoration: none;
}

.third-party-cookie a:hover {
    text-decoration: underline;
}

.warning-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.warning-box h4 {
    color: #856404;
    margin-bottom: 10px;
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.legal-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.legal-nav a {
    color: #ff9d00;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid #ff9d00;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.legal-nav a:hover {
    background: #ff9d00;
    color: white;
}

.footer-section ul li a.active {
    color: #ff9d00;
    font-weight: 600;
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    .legal-header {
        padding: 20px;
    }
    
    .legal-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-category {
        padding: 15px;
    }
    
    .third-party-cookie {
        padding: 15px;
    }
}

/* Responsive adjustments for blog */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .environmental-stats {
        grid-template-columns: 1fr;
    }
    
    .cost-comparison {
        grid-template-columns: 1fr;
    }
    
    .article-navigation {
        flex-direction: column;
        text-align: center;
    }
    
    .chart-item, .comparison-item {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .chart-label {
        min-width: auto;
        text-align: center;
    }
    
    .info-box, .action-box {
        flex-direction: column;
        text-align: center;
    }
}

/* Thanks Page Styles */
.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

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

.thanks-icon {
    margin-bottom: 30px;
    animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); opacity: 0.8; }
    70% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.thanks-content h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.submitted-data {
    margin-bottom: 40px;
}

.submitted-info {
    background: #f8f9fa;
    border: 2px solid #4CAF50;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.submitted-info h3 {
    color: #4CAF50;
    margin-bottom: 15px;
    text-align: center;
}

.submitted-info ul {
    list-style: none;
    padding: 0;
}

.submitted-info li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.submitted-info li:last-child {
    border-bottom: none;
}

.next-steps, .benefits-reminder {
    margin: 50px 0;
}

.next-steps h2, .benefits-reminder h2 {
    color: #333;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.step-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, #ff9d00, #ff4d00);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-item h3 {
    color: #333;
    margin: 10px 0 15px;
}

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

.benefit-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-item h4 {
    color: #333;
    margin: 15px 0 10px;
}

.contact-reminder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
}

.contact-reminder h2 {
    color: #333;
    margin-bottom: 15px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #333;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

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

.contact-option.phone {
    border: 2px solid #4CAF50;
}

.contact-option.phone:hover {
    background: #4CAF50;
    color: white;
}

.contact-option.email {
    border: 2px solid #ff9d00;
}

.contact-option.email:hover {
    background: #ff9d00;
    color: white;
}

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

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #ff9d00, #ff4d00);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 157, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ff9d00;
    border-color: #ff9d00;
}

.btn-secondary:hover {
    background: #ff9d00;
    color: white;
}

/* Responsive adjustments for thanks page */
@media (max-width: 768px) {
    .thanks-content h1 {
        font-size: 2rem;
    }
    
    .thanks-message {
        font-size: 1.1rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-reminder {
        padding: 25px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}