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

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

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

/* Typography - Newspaper Style */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.main-headline {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    border-top: 4px solid #000;
    border-bottom: 2px solid #000;
    padding: 1rem 0;
    margin: 2rem 0;
}

.sub-headline {
    font-size: 1.2rem;
    text-align: center;
    font-style: italic;
    margin-bottom: 2rem;
    color: #666;
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-link {
    color: #3498db;
    text-decoration: underline;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 3px solid #000;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
    color: #2c3e50;
}

.logo .tagline {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.contact-info {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
}

.contact-info span {
    font-weight: 600;
}

/* Navigation */
.main-nav {
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 1rem 0;
    margin: 0;
}

.nav-menu li {
    margin: 0 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    border-bottom-color: #e74c3c;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    margin: 2rem 0;
}

.hero-image {
    position: relative;
    margin: 2rem 0;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 2px solid #000;
}

.image-caption {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 0.9rem;
    font-style: italic;
}

/* News Columns - Newspaper Layout */
.news-columns {
    margin: 3rem 0;
}

.column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    column-rule: 1px solid #ddd;
}

.column {
    padding: 0 1rem;
}

.news-article {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.news-article.featured {
    border-bottom: 2px solid #000;
    padding-bottom: 2rem;
}

.article-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.news-article.featured .article-title {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 1rem 0;
    border: 1px solid #ddd;
}

.article-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    margin: 1rem 0;
}

.testimonial {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-left: 4px solid #e74c3c;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    float: left;
    margin: 0 1rem 1rem 0;
    object-fit: cover;
}

.testimonial blockquote {
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.testimonial cite {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

/* Services Highlight */
.services-highlight {
    background: #f8f9fa;
    padding: 1.5rem;
    border: 1px solid #ddd;
}

.service-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-item h4 {
    color: #e74c3c;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Sidebar Widget */
.sidebar-widget {
    background: #2c3e50;
    color: white;
    padding: 1.5rem;
    margin-top: 1rem;
}

.sidebar-widget h4 {
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Call to Action */
.cta-section {
    background: #e74c3c;
    color: white;
    padding: 3rem 0;
    margin: 3rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

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

.btn-primary {
    background: #2c3e50;
    color: white;
}

.btn-primary:hover {
    background: #34495e;
}

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

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

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .main-headline {
        font-size: 2.5rem;
        padding: 0.5rem 0;
    }
    
    .header-top {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        text-align: center;
    }
    
    .column-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
        column-rule: none;
    }
    
    .column {
        padding: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-headline {
        font-size: 2rem;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .hero-img {
        height: 250px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Page-specific Styles */
.page-header {
    text-align: center;
    margin: 2rem 0 3rem;
    padding: 2rem 0;
    border-bottom: 2px solid #000;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.column-wide {
    grid-column: span 2;
}

/* About Page Styles */
.about-content {
    margin: 3rem 0;
}

.lead-paragraph {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid #ddd;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #e74c3c;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.certificate-list {
    list-style: none;
    padding: 0;
}

.certificate-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.certificate-list li:before {
    content: "🏆 ";
    margin-right: 0.5rem;
}

.award-item {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-left: 3px solid #e74c3c;
    font-size: 0.9rem;
}

/* Mission Vision Values */
.mvv-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: #f8f9fa;
}

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

.mvv-item {
    background: white;
    padding: 2rem;
    border: 1px solid #ddd;
    text-align: center;
}

.mvv-item h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mvv-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 1rem 0;
    border: 1px solid #ddd;
}

.values-list {
    text-align: left;
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 0.75rem;
    padding-left: 1rem;
}

/* Team Section */
.team-section {
    margin: 4rem 0;
}

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

.team-member {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border: 1px solid #ddd;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #e74c3c;
}

.team-member h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.team-title {
    color: #e74c3c;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 1rem;
}

/* Sustainability Section */
.sustainability-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: #f8f9fa;
}

.sustainability-goals {
    background: white;
    padding: 2rem;
    border: 1px solid #ddd;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.goal-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.goal-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

/* Services Page Styles */
.services-overview {
    margin: 3rem 0;
}

.quick-order {
    background: #e74c3c;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.contact-btn {
    display: block;
    padding: 0.75rem;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: rgba(255,255,255,0.3);
}

.working-hours {
    background: #f8f9fa;
    padding: 1.5rem;
    border: 1px solid #ddd;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item.emergency {
    color: #e74c3c;
    font-weight: 600;
}

/* Service Categories */
.service-categories {
    margin: 4rem 0;
}

.service-category {
    margin-bottom: 4rem;
    border: 2px solid #000;
    background: white;
}

.service-header {
    background: #2c3e50;
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h2 {
    margin: 0;
    color: white;
    font-size: 1.8rem;
}

.service-badge {
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.service-features h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.service-features li:last-child {
    border-bottom: none;
}

.price-table {
    background: #f8f9fa;
    padding: 1rem;
    border: 1px solid #ddd;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.price-item:last-child {
    border-bottom: none;
}

.price {
    font-weight: 600;
    color: #e74c3c;
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
}

.coverage-item {
    background: #f8f9fa;
    padding: 1rem;
    border: 1px solid #ddd;
    text-align: center;
}

.coverage-item strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.special-services {
    margin: 1rem 0;
}

.special-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border: 1px solid #ddd;
}

.special-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.corporate-benefits {
    margin: 2rem 0;
}

.benefit-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border: 1px solid #ddd;
}

.benefit-item h5 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefit-item ul {
    list-style: none;
    padding: 0;
}

.benefit-item li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.benefit-item li:before {
    content: "→ ";
    color: #e74c3c;
    font-weight: bold;
}

.partnership-cta {
    background: #2c3e50;
    color: white;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.partnership-cta h4 {
    color: white;
    margin-bottom: 1rem;
}

/* Additional Services */
.additional-services {
    margin: 4rem 0;
    padding: 3rem 0;
    background: #f8f9fa;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.additional-item {
    background: white;
    padding: 2rem;
    border: 1px solid #ddd;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.additional-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.additional-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .column-layout {
        grid-template-columns: 1fr;
    }
    
    .column-wide {
        grid-column: span 1;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .additional-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        flex-direction: column;
    }
}

/* Blog Page Styles */
.featured-news {
    margin: 3rem 0;
}

.featured-article {
    border: 3px solid #000;
    background: white;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.news-category {
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.featured-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.featured-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
}

.read-more-btn {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: #34495e;
}

.featured-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 2px solid #000;
}

/* News Grid */
.news-grid-section {
    margin: 4rem 0;
}

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

.news-card {
    background: white;
    border: 1px solid #ddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.news-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.read-more-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.read-more-link:hover {
    text-decoration: underline;
}

/* Industry News */
.industry-news {
    margin: 4rem 0;
    padding: 3rem 0;
    background: #f8f9fa;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.industry-column {
    background: white;
    padding: 2rem;
    border: 1px solid #ddd;
}

.industry-column h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 0.5rem;
}

.industry-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.industry-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.industry-item h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.industry-date {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.industry-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

/* Newsletter Section */
.newsletter-section {
    background: #2c3e50;
    color: white;
    padding: 3rem 0;
    text-align: center;
    margin: 4rem 0;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0;
}

.newsletter-input {
    width: 100%;
    padding: 1rem;
    border: none;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.newsletter-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.newsletter-btn:hover {
    background: #c0392b;
}

.newsletter-consent {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.newsletter-consent a {
    color: #3498db;
}

/* Archive Section */
.archive-section {
    margin: 4rem 0;
}

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

.archive-month {
    background: #f8f9fa;
    padding: 1.5rem;
    border: 1px solid #ddd;
}

.archive-month h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.archive-month ul {
    list-style: none;
    padding: 0;
}

.archive-month li {
    margin-bottom: 0.5rem;
}

.archive-month a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.archive-month a:hover {
    color: #e74c3c;
}

/* Contact Page Styles */
.contact-methods {
    margin: 3rem 0;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border: 2px solid #ddd;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #e74c3c;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-detail {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.contact-description {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.contact-btn {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: #34495e;
}

/* Quick Order Form */
.quick-order-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
}

.form-container {
    background: white;
    padding: 2rem;
    border: 2px solid #000;
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-form {
    max-width: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Order Info Sidebar */
.order-info {
    background: #f8f9fa;
    padding: 2rem;
    border: 1px solid #ddd;
    height: fit-content;
}

.order-info h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
}

.info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-section h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.info-section li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: #666;
}

.quick-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.quick-contact-btn:hover {
    background: #34495e;
}

/* Office Locations */
.office-locations {
    margin: 4rem 0;
}

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

.location-card {
    background: white;
    padding: 2rem;
    border: 1px solid #ddd;
    transition: transform 0.3s ease;
}

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

.location-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-details {
    margin-bottom: 1.5rem;
}

.location-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.location-services h4 {
    color: #e74c3c;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.location-services ul {
    list-style: none;
    padding: 0;
}

.location-services li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: #666;
}

.location-services li:before {
    content: "• ";
    color: #e74c3c;
    font-weight: bold;
}

/* Map Section */
.map-section {
    margin: 4rem 0;
}

.map-container {
    position: relative;
    height: 400px;
    border: 2px solid #000;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info {
    background: white;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
}

.map-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.map-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.map-btn {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.map-btn:hover {
    background: #c0392b;
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: #f8f9fa;
}

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

.faq-item {
    background: white;
    padding: 1.5rem;
    border: 1px solid #ddd;
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Responsive Updates for Blog and Contact */
@media (max-width: 768px) {
    .featured-content {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-order-section {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .archive-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .map-actions {
        flex-direction: column;
    }
}

/* Legal Pages Styles */
.legal-date {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

.legal-content {
    margin: 3rem 0;
}

.legal-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.legal-text {
    background: white;
    padding: 2rem;
    border: 1px solid #ddd;
    line-height: 1.7;
}

.legal-text h2 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e74c3c;
    font-size: 1.5rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.legal-text p {
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-text ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.legal-text strong {
    color: #2c3e50;
}

.legal-text a {
    color: #e74c3c;
    text-decoration: underline;
}

.legal-text a:hover {
    color: #c0392b;
}

.contact-info-legal {
    background: #f8f9fa;
    padding: 1.5rem;
    border: 1px solid #ddd;
    margin: 1rem 0;
}

.contact-info-legal p {
    margin-bottom: 0.5rem;
    text-align: left;
}

/* Cookie Table */
.cookie-table {
    margin: 1rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

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

/* Cookie Preferences */
.cookie-preferences {
    background: #f8f9fa;
    padding: 2rem;
    border: 1px solid #ddd;
    margin: 2rem 0;
    text-align: center;
}

.cookie-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.cookie-controls .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Legal Sidebar */
.legal-sidebar {
    background: #f8f9fa;
    padding: 2rem;
    border: 1px solid #ddd;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.legal-sidebar .sidebar-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
}

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

.legal-sidebar h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-nav {
    list-style: none;
    padding: 0;
}

.legal-nav li {
    margin-bottom: 0.5rem;
}

.legal-nav a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-nav a:hover {
    color: #e74c3c;
}

.related-docs {
    list-style: none;
    padding: 0;
}

.related-docs li {
    margin-bottom: 0.5rem;
}

.related-docs a {
    color: #e74c3c;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.related-docs a:hover {
    text-decoration: underline;
}

.data-protection-contact,
.legal-support {
    font-size: 0.9rem;
    line-height: 1.5;
}

.data-protection-contact p,
.legal-support p {
    margin-bottom: 0.5rem;
}

/* Cookie Controls Sidebar */
.cookie-controls-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.control-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 0.75rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.control-btn:hover {
    background: #34495e;
}

.cookie-types {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cookie-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: white;
    border: 1px solid #ddd;
}

.type-name {
    font-size: 0.9rem;
    color: #2c3e50;
}

.type-count {
    background: #e74c3c;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.important-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    background: white;
    border: 1px solid #ddd;
}

.info-item strong {
    color: #2c3e50;
    font-size: 0.9rem;
}

.info-item span {
    color: #e74c3c;
    font-weight: 600;
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 768px) {
    .legal-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-text {
        padding: 1.5rem;
    }
    
    .legal-sidebar {
        position: static;
        padding: 1.5rem;
    }
    
    .cookie-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
    
    .legal-text h2 {
        font-size: 1.3rem;
    }
    
    .legal-text h3 {
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta-section,
    .cookie-banner,
    .legal-sidebar {
        display: none;
    }
    
    .main-content {
        margin: 0;
    }
    
    .legal-container {
        grid-template-columns: 1fr;
    }
    
    .legal-text {
        border: none;
        padding: 0;
    }
    
    .column-layout {
        column-count: 3;
        column-gap: 2rem;
        column-rule: 1px solid #000;
    }
    
    .news-article {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}
