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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content i {
    font-size: 24px;
    color: #fff;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-cookie {
    padding: 8px 16px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #fff;
    color: #2E7D32;
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

/* Make custom settings button brighter */
#custom-settings {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #2E7D32 !important;
    border: 2px solid #fff !important;
    font-weight: 600 !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
}

#custom-settings:hover {
    background: #fff !important;
    color: #2E7D32 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.8) !important;
}

.btn-cookie:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

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

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #2E7D32;
}

.nav-brand i {
    font-size: 28px;
    color: #4CAF50;
}

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

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

.nav-link:hover {
    color: #4CAF50;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4CAF50;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #2E7D32;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

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

.hero-svg {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-content p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
}

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

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

.section:nth-child(even) {
    background: #f8f9fa;
}

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

.section-icon {
    font-size: 48px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: #4CAF50;
}

.service-card i {
    font-size: 48px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2E7D32;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-icon {
    font-size: 48px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #2E7D32;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

.about-features i {
    color: #4CAF50;
    font-size: 20px;
}

.about-visual svg {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Statistics Section */
.stats {
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    color: white;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.9;
}

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

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #4CAF50;
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.review-stars i {
    color: #ffd700;
    font-size: 18px;
}

.review-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2E7D32;
    font-weight: 600;
}

.review-author i {
    font-size: 24px;
    color: #4CAF50;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

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

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

.blog-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    margin-bottom: 20px;
}

.blog-icon i {
    font-size: 24px;
    color: white;
}

.blog-card h3 {
    margin-bottom: 15px;
}

.blog-card h3 a {
    color: #2E7D32;
    text-decoration: none;
    font-size: 1.3rem;
}

.blog-card h3 a:hover {
    color: #4CAF50;
}

.blog-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #2E7D32;
}

.blog-cta {
    text-align: center;
}

/* Contact Form */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2E7D32;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

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

/* Simplified Article Layout */
.article-simple {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.article-simple .article-intro {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #4CAF50;
}

.article-simple h2 {
    color: #2E7D32;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4CAF50;
}

.article-simple h3 {
    color: #2E7D32;
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.article-simple p {
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.article-simple ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.article-simple li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.article-simple li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

.article-simple .highlight-box {
    background: linear-gradient(135deg, #E8F5E8, #F1F8E9);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid #4CAF50;
}

.article-simple .highlight-box h3 {
    color: #2E7D32;
    margin-top: 0;
    margin-bottom: 15px;
}

.article-simple .highlight-box p {
    margin-bottom: 0;
    color: #2E7D32;
    font-weight: 500;
}

.article-simple .cta-section {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.article-simple .cta-section h3 {
    color: white;
    margin-bottom: 15px;
}

.article-simple .cta-section p {
    color: white;
    margin-bottom: 25px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .article-simple {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .article-simple h2 {
        font-size: 1.5rem;
    }
    
    .article-simple h3 {
        font-size: 1.3rem;
    }
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #4CAF50;
}

.footer-section h3 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

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

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

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4CAF50;
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info i {
    color: #4CAF50;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #4CAF50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 100px 0 60px;
    background: #f8f9fa;
    min-height: 100vh;
}

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

.legal-content h1 {
    color: #2E7D32;
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-content h1 i {
    font-size: 2rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #2E7D32;
    font-size: 1.8rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.legal-section h3 {
    color: #388E3C;
    font-size: 1.4rem;
    margin: 25px 0 15px;
}

.legal-section h4 {
    color: #4CAF50;
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

.legal-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section ul, .legal-section ol {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-section ul li, .legal-section ol li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.legal-section strong {
    color: #2E7D32;
    font-weight: 600;
}

/* Tables for legal pages */
.cookies-table {
    overflow-x: auto;
    margin: 20px 0;
}

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

.cookies-table th {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.cookies-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    color: #555;
}

.cookies-table tr:last-child td {
    border-bottom: none;
}

.cookies-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Special elements for cookies page */
.cookie-management {
    text-align: center;
    margin: 30px 0;
}

.functionality-impact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.impact-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.impact-item h4 {
    color: #2E7D32;
    margin-bottom: 10px;
}

.impact-item p {
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 80px 0 40px;
    }
    
    .legal-content .container {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .functionality-impact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
}

/* Article Pages Styles */
.article-header {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.article-header .container {
    position: relative;
    z-index: 2;
}

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

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 10px;
}

.article-header-content {
    max-width: 800px;
}

.article-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.article-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-header h1 i {
    font-size: 2.4rem;
    opacity: 0.9;
}

.article-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta i {
    opacity: 0.8;
}

.article-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.article-simple {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.article-intro {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-left: 4px solid #4CAF50;
    border-radius: 5px;
}

.article-simple h2 {
    color: #2E7D32;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.article-simple h3 {
    color: #388E3C;
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.article-simple p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.article-simple ul li, .article-simple ol li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.article-simple strong {
    color: #2E7D32;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, #E8F5E8, #F1F8E9);
    border: 1px solid #C8E6C9;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid #4CAF50;
}

.highlight-box h3 {
    color: #2E7D32;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.highlight-box p {
    margin-bottom: 0;
    color: #2E7D32;
    font-weight: 500;
}

@media (max-width: 768px) {
    .article-header {
        padding: 100px 0 40px;
    }
    
    .article-header h1 {
        font-size: 2.2rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .article-meta {
        justify-content: center;
        gap: 15px;
    }
    
    .article-simple {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .breadcrumb {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-simple h2 {
        font-size: 1.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
}