/* 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: #ffffff;
}

.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;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
}

.nav-brand i {
    margin-right: 0.5rem;
    color: #3498db;
}

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

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

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

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

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

.hero-bg {
    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;
    color: #2c3e50;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero h1 i {
    color: #3498db;
    margin-right: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

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

.btn-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

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

.btn-tertiary {
    background: #6c757d;
    color: white;
}

.btn-tertiary:hover {
    background: #5a6268;
}

.btn-primary i, .btn-secondary i, .btn-tertiary i {
    margin-right: 0.5rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

section h2 i {
    color: #3498db;
    margin-right: 1rem;
}

/* Services Section */
.services {
    background: #f8f9fa;
}

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

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

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

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

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

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

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

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #6c757d;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.feature i {
    color: #3498db;
    font-size: 1.2rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

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

.stat h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #6c757d;
}

/* Reviews Section */
.reviews {
    background: #f8f9fa;
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #f39c12;
}

.review-card p {
    margin-bottom: 1rem;
    font-style: italic;
    color: #6c757d;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

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

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step i {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

.step p {
    color: #6c757d;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-item p {
    color: #6c757d;
}

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

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

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

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

.contact-form h3 i {
    color: #3498db;
    margin-right: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section h3 i {
    color: #3498db;
    margin-right: 1rem;
}

.footer-section p {
    color: #bdc3c7;
    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: #3498db;
}

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

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

.social-links a:hover {
    background: #2980b9;
}

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

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

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

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

.cookie-content i {
    font-size: 2rem;
    color: #f39c12;
}

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

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

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

/* Thank You Page */
.thank-you {
    padding: 8rem 0 5rem;
    background: #f8f9fa;
}

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

.thank-you-icon {
    font-size: 5rem;
    color: #27ae60;
    margin-bottom: 2rem;
}

.thank-you h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thank-you p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #6c757d;
}

.form-summary {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    text-align: left;
}

.form-summary h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-summary h3 i {
    color: #3498db;
    margin-right: 1rem;
}

.summary-item {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.summary-item strong {
    color: #2c3e50;
    margin-right: 1rem;
}

.next-steps {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.next-steps h3 {
    margin-bottom: 2rem;
    color: #2c3e50;
}

.next-steps h3 i {
    color: #3498db;
    margin-right: 1rem;
}

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

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

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

.step-item p {
    color: #6c757d;
}

.emergency-contact {
    background: #e8f6f3;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.emergency-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.emergency-info i {
    font-size: 3rem;
    color: #e74c3c;
}

.emergency-info h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.emergency-info p {
    margin-bottom: 1rem;
    color: #6c757d;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #27ae60;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
}

.phone-link:hover {
    color: #229954;
}

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

/* Blog Styles */
.blog-header {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.blog-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.blog-header h1 i {
    color: #3498db;
    margin-right: 1rem;
}

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

.blog-articles {
    padding: 5rem 0;
}

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

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

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

.article-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 2rem;
    text-align: center;
}

.article-icon i {
    font-size: 3rem;
    color: white;
}

.article-content {
    padding: 2rem;
}

.article-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-card h2 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

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

.article-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.article-category {
    background: #e9ecef;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Newsletter Section */
.newsletter {
    background: #2c3e50;
    padding: 4rem 0;
    color: white;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.newsletter-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.newsletter-text h3 i {
    color: #3498db;
    margin-right: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    min-width: 400px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    white-space: nowrap;
}

/* Article Header */
.article-header {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.breadcrumb span {
    color: #6c757d;
}

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

.article-header h1 i {
    color: #3498db;
    margin-right: 1rem;
}

.article-header .article-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.article-header .article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
}

/* Article Content */
.article-content {
    padding: 5rem 0;
}

.article-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.article-main {
    max-width: none;
}

.article-intro {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50;
}

.article-body h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.article-body h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.article-body p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #555;
}

.article-body ul, .article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

/* Tip Box */
.tip-box {
    background: #e8f6f3;
    border-left: 4px solid #1abc9c;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

.tip-box i {
    color: #1abc9c;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.tip-box p {
    margin: 0;
    color: #2c3e50;
}

/* Warning Box */
.warning-box {
    background: #fdf2f2;
    border-left: 4px solid #e74c3c;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    display: flex;
    gap: 1rem;
}

.warning-box i {
    color: #e74c3c;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.warning-box h4 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.warning-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.warning-box li {
    color: #555;
}

/* Steps Container */
.steps-container {
    margin: 2rem 0;
}

.steps-container .step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    align-items: flex-start;
}

.steps-container .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    margin: 0;
    color: #555;
}

/* Maintenance Schedule */
.maintenance-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.schedule-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-item h4 {
    margin-bottom: 1rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.schedule-item ul {
    margin: 0;
    padding-left: 1.5rem;
}

.schedule-item li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Article Footer */
.article-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e9ecef;
}

.article-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.article-summary h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-summary h3 i {
    color: #3498db;
}

.contact-cta {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.contact-cta h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-cta h3 i {
    color: white;
}

.contact-cta p {
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

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

.contact-cta .btn-primary:hover {
    background: #f8f9fa;
    color: #2980b9;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.related-articles {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.related-articles h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.related-articles h3 i {
    color: #3498db;
}

.related-article {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.related-article:hover {
    background: #f8f9fa;
}

.related-article a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #2c3e50;
    text-decoration: none;
}

.related-article i {
    color: #3498db;
    width: 20px;
}

.contact-widget {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.contact-widget h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-widget h3 i {
    color: white;
}

.contact-widget p {
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}

.phone-widget {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #27ae60;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.phone-widget:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.widget-hours {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .emergency-info {
        flex-direction: column;
        text-align: center;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        min-width: auto;
        flex-direction: column;
    }
    
    .article-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-header .article-meta {
        gap: 1rem;
    }
    
    .maintenance-schedule {
        grid-template-columns: 1fr;
    }
    
    .steps-container .step {
        flex-direction: column;
        text-align: center;
    }
    
    .warning-box {
        flex-direction: column;
    }
    
    .article-sidebar {
        position: static;
    }
}

/* Legal Pages Styles */
.legal-header {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.legal-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-header h1 i {
    color: #3498db;
    margin-right: 1rem;
}

.legal-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

.legal-content {
    padding: 5rem 0;
}

.legal-main {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-main h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.legal-main h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.legal-main p {
    margin-bottom: 1.5rem;
    color: #555;
}

.legal-main ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.legal-main ol li {
    margin-bottom: 1rem;
    color: #555;
}

.legal-main ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-main ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-main strong {
    color: #2c3e50;
    font-weight: 600;
}

.legal-main code {
    background: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    color: #e74c3c;
}

.legal-main table {
    margin: 2rem 0;
    font-size: 0.9rem;
}

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

.legal-main table td, .legal-main table th {
    text-align: left;
}

.legal-main a {
    color: #3498db;
    text-decoration: none;
}

.legal-main a:hover {
    text-decoration: underline;
}

/* Legal page responsive */
@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-main {
        padding: 0 1rem;
    }
    
    .legal-main table {
        font-size: 0.8rem;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
}