/* 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: #2c3e50;
    background-color: #f8f9fa;
}

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

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.logo i {
    margin-right: 10px;
    color: #3498db;
}

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

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

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

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

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

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

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

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

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

.btn-tertiary {
    background: #95a5a6;
    color: white;
}

.btn-tertiary:hover {
    background: #7f8c8d;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

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

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

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

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

.service-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

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

.service-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

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

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

/* About Section */
.about {
    padding: 100px 0;
    background: #ecf0f1;
}

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

.about-text .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
}

.stat-label {
    color: white;
    font-size: 0.9rem;
}

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

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: white;
}

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

.review-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.stars {
    color: #f39c12;
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #2c3e50;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #7f8c8d;
}

.reviewer i {
    font-size: 1.5rem;
    color: #3498db;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: #ecf0f1;
}

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

.blog-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s;
}

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

.blog-icon {
    text-align: center;
    margin-bottom: 20px;
}

.blog-icon i {
    font-size: 2.5rem;
    color: #3498db;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.blog-card p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: #2980b9;
}

.blog-meta {
    margin-top: 15px;
    color: #95a5a6;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

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

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #3498db;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 10px;
    color: #1a252f;
    font-weight: 600;
}

.contact-item p {
    color: #7f8c8d;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-logo i {
    margin-right: 10px;
    color: #3498db;
}

.footer-section p {
    margin-bottom: 20px;
    color: #bdc3c7;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: white;
}

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

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

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

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

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

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

.social-links a:hover {
    background: #3498db;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s;
}

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

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

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

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

/* Thank You Page */
.thank-you {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

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

.thank-you-icon svg {
    width: 200px;
    height: 200px;
}

.thank-you h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 50px;
    line-height: 1.8;
}

.next-steps {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

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

.step i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #3498db;
}

.step h4 {
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-emergency {
    background: rgba(231, 76, 60, 0.1);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.contact-emergency h3 {
    margin-bottom: 15px;
    color: #e74c3c;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e74c3c;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 15px;
    transition: background 0.3s;
}

.emergency-phone:hover {
    background: #c0392b;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .thank-you h1 {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Blog Article Styles */
.blog-article {
    padding: 120px 0 50px;
    background: #f8f9fa;
    min-height: 100vh;
}

.article-header {
    text-align: center;
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.back-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.back-link:hover {
    color: #2980b9;
}

.article-date {
    color: #7f8c8d;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.article-icon {
    font-size: 3rem;
    color: #3498db;
}

.article-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.article-content section {
    margin-bottom: 40px;
}

.article-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-content h2 i {
    color: #3498db;
}

.article-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 25px 0 15px 0;
}

.article-content h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 20px 0 10px 0;
}

.article-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.article-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #2c3e50;
}

.feature-grid, .advantage-grid, .recycling-stats, .control-center-features,
.safety-equipment-grid, .technology-features, .training-grid, .weather-conditions,
.certification-grid, .team-specialization {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-item, .advantage-item, .recycling-item, .tech-item, .equipment-item,
.training-item, .condition-item, .cert-item, .team-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #3498db;
}

.feature-item i, .advantage-item i, .recycling-item i, .tech-item i, .equipment-item i,
.training-item i, .condition-item i, .cert-item i, .team-item i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 15px;
}

.feature-item h4, .advantage-item h4, .recycling-item h4, .tech-item h4, .equipment-item h4,
.training-item h4, .condition-item h4, .cert-item h4, .team-item h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.feature-item p, .advantage-item p, .recycling-item p, .tech-item p, .equipment-item p,
.training-item p, .condition-item p, .cert-item p, .team-item p {
    color: #7f8c8d;
    margin: 0;
}

.project-stats, .results-stats, .safety-stats, .efficiency-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 30px 0;
    text-align: center;
}

.stat-item, .result-item {
    background: #3498db;
    color: white;
    padding: 30px 20px;
    border-radius: 10px;
}

.stat-number, .result-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label, .result-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.time-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    color: white;
}

.time-item.urgent {
    background: #e74c3c;
}

.time-item.high {
    background: #f39c12;
}

.time-item.medium {
    background: #2ecc71;
}

.time-item i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.time-item h4 {
    margin-bottom: 15px;
    color: white;
}

.time-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 15px 0;
}

.time-item p {
    opacity: 0.9;
    margin: 0;
    color: white;
}

.phase-model {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.phase {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 25px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
}

.phase-number {
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.phase h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.phase p {
    color: #7f8c8d;
    margin: 0;
    font-size: 0.9rem;
}

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

.vehicle-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.vehicle-item i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 15px;
}

.vehicle-item h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.vehicle-item p {
    color: #7f8c8d;
    margin: 0;
}

.emergency-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #e74c3c;
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.emergency-contact i {
    font-size: 3rem;
}

.contact-info h4 {
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: white;
}

.phone-note {
    opacity: 0.9;
    margin: 0;
    color: white;
}

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

.award-item {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #f39c12;
}

.award-item i {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 15px;
}

.award-item h4 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.award-item p {
    color: #7f8c8d;
    margin: 0;
    font-size: 0.9rem;
}

.article-footer {
    background: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-share span {
    color: #7f8c8d;
    font-weight: 600;
}

.share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s;
}

.share-link:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-content {
        padding: 25px;
    }
    
    .article-meta {
        justify-content: center;
        text-align: center;
    }
    
    .feature-grid, .advantage-grid, .recycling-stats, .control-center-features,
    .safety-equipment-grid, .technology-features, .training-grid, .weather-conditions,
    .certification-grid, .team-specialization, .vehicle-types {
        grid-template-columns: 1fr;
    }
    
    .phase-model {
        flex-direction: column;
    }
    
    .emergency-contact {
        flex-direction: column;
        text-align: center;
    }
    
    .article-footer {
        flex-direction: column;
        text-align: center;
    }
}

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

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.legal-header i {
    color: #3498db;
}

.legal-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.legal-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

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

.legal-content h2 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 25px 0 15px 0;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #2c3e50;
}

.company-info, .contact-info, .contact-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    margin: 20px 0;
}

.cookie-category {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #3498db;
}

.cookie-category.necessary {
    border-left-color: #e74c3c;
}

.cookie-category.functional {
    border-left-color: #f39c12;
}

.cookie-category.analytical {
    border-left-color: #3498db;
}

.cookie-category.marketing {
    border-left-color: #9b59b6;
}

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

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

.browser-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-top: 3px solid #3498db;
}

.browser-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.browser-item i {
    color: #3498db;
}

.browser-item p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
}

.third-party-cookies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.third-party-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.third-party-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.third-party-item p {
    color: #7f8c8d;
    margin-bottom: 8px;
}

.third-party-item a {
    color: #3498db;
    text-decoration: none;
}

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

.legal-footer {
    background: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-footer p {
    color: #7f8c8d;
    font-weight: 600;
    margin: 0;
}

.legal-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .legal-content {
        padding: 25px;
    }
    
    .browser-guides {
        grid-template-columns: 1fr;
    }
    
    .third-party-cookies {
        grid-template-columns: 1fr;
    }
    
    .legal-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}