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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    filter: invert(37%) sepia(93%) saturate(1352%) hue-rotate(204deg) brightness(95%) contrast(86%);
}

.page-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
    filter: invert(37%) sepia(93%) saturate(1352%) hue-rotate(204deg) brightness(95%) contrast(86%);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.logo {
    width: 2.5rem;
    height: 2.5rem;
}

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

.nav-link {
    color: #4b5563;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
    background-color: #eff6ff;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1f2937;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #6b7280;
    color: white;
}

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

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

.btn-outline:hover {
    background-color: #2563eb;
    color: white;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn img {
    width: 1rem;
    height: 1rem;
    filter: brightness(0) invert(1);
}

.btn-outline img {
    filter: invert(37%) sepia(93%) saturate(1352%) hue-rotate(204deg) brightness(95%) contrast(86%);
}

.btn-outline:hover img {
    filter: brightness(0) invert(1);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8rem 0 4rem;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.banner-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
}

.header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Grids */
.info-grid,
.services-grid,
.products-grid,
.reviews-grid,
.contact-grid,
.articles-grid,
.content-grid,
.preview-grid,
.benefits-list,
.faq-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

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

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

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

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

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

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

.content-grid,
.preview-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

/* Cards */
.info-item,
.service-card,
.product-card,
.review-card,
.contact-item,
.article-card,
.content-card,
.preview-card,
.faq-item {
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover,
.product-card:hover,
.article-card:hover,
.content-card:hover,
.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon,
.product-icon,
.article-icon,
.content-icon,
.preview-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

.service-icon img,
.product-icon img,
.article-icon img,
.content-icon img,
.preview-icon img {
    width: 100%;
    height: 100%;
    filter: invert(37%) sepia(93%) saturate(1352%) hue-rotate(204deg) brightness(95%) contrast(86%);
}

.contact-icon {
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
    filter: invert(37%) sepia(93%) saturate(1352%) hue-rotate(204deg) brightness(95%) contrast(86%);
}

/* Stars */
.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars img {
    width: 1rem;
    height: 1rem;
    filter: invert(74%) sepia(85%) saturate(1352%) hue-rotate(2deg) brightness(105%) contrast(97%);
}

/* Review Cards */
.review-card cite {
    font-style: italic;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Newsletter */


.newsletter-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.newsletter-text {
    flex: 1;
    min-width: 300px;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
}

.newsletter-form form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
}

/* Forms */
.form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.form-header img {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    filter: invert(37%) sepia(93%) saturate(1352%) hue-rotate(204deg) brightness(95%) contrast(86%);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    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: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
}

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

.checkmark,
.radio-mark {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    border-radius: 0.25rem;
    position: relative;
    transition: all 0.3s ease;
}

.radio-mark {
    border-radius: 50%;
}

input[type="checkbox"]:checked + .checkmark,
input[type="radio"]:checked + .radio-mark {
    background-color: #2563eb;
    border-color: #2563eb;
}

input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.75rem;
}

input[type="radio"]:checked + .radio-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.5rem;
    height: 0.5rem;
    background-color: white;
    border-radius: 50%;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    padding: 2rem;
    border-radius: 1rem;
}

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

.info-header img {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    filter: invert(37%) sepia(93%) saturate(1352%) hue-rotate(204deg) brightness(95%) contrast(86%);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0;
    background: none;
    box-shadow: none;
}

.contact-details .contact-item img {
    width: 1.5rem;
    height: 1.5rem;
    filter: invert(37%) sepia(93%) saturate(1352%) hue-rotate(204deg) brightness(95%) contrast(86%);
    margin-top: 0.25rem;
}

.social-contact h3 {
    margin-bottom: 1rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-links img {
    width: 1.25rem;
    height: 1.25rem;
    filter: invert(37%) sepia(93%) saturate(1352%) hue-rotate(204deg) brightness(95%) contrast(86%);
}

/* Newsletter Page */
.newsletter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.newsletter-benefits {
    padding: 2rem;
    border-radius: 1rem;
}

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

.benefits-header img {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    filter: invert(37%) sepia(93%) saturate(1352%) hue-rotate(204deg) brightness(95%) contrast(86%);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0;
    background: none;
    box-shadow: none;
}

.benefit-item img {
    width: 2rem;
    height: 2rem;
    filter: invert(37%) sepia(93%) saturate(1352%) hue-rotate(204deg) brightness(95%) contrast(86%);
    margin-top: 0.25rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.248);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.newsletter-form-container {
    display: flex;
    align-items: center;
}

/* Thanks Page */
.thank-you-section {
    padding: 8rem 0 4rem;
    text-align: center;
}

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

.success-icon {
    margin-bottom: 2rem;
}

.success-star {
    width: 4rem;
    height: 4rem;
    filter: invert(74%) sepia(85%) saturate(1352%) hue-rotate(2deg) brightness(105%) contrast(97%);
}

.thank-you-message {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #4b5563;
}

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

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.detail-item img {
    width: 2rem;
    height: 2rem;
    filter: invert(37%) sepia(93%) saturate(1352%) hue-rotate(204deg) brightness(95%) contrast(86%);
    margin-top: 0.25rem;
}

.next-steps {
    margin-bottom: 3rem;
}

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

.step-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 2rem;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

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

.urgent-contact {
    background: rgba(255, 255, 255, 0.083);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2563eb;
    margin: 1rem 0;
}

.phone-link img {
    width: 1.5rem;
    height: 1.5rem;
    filter: invert(37%) sepia(93%) saturate(1352%) hue-rotate(204deg) brightness(95%) contrast(86%);
}

/* Article Pages */
.article-page {
    padding-top: 6rem;
}

.article-header {
    background: linear-gradient(135deg, #f3f4f630 0%, #e5e7eb48 100%);
    padding: 2rem 0;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #6b7280;
}

.breadcrumb a {
    color: #2563eb;
}

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

.article-meta .article-icon {
    width: 3rem;
    height: 3rem;
    filter: invert(37%) sepia(93%) saturate(1352%) hue-rotate(204deg) brightness(95%) contrast(86%);
}

.meta-details {
    font-size: 0.9rem;
    color: #6b7280;
}

.article-content {
    padding: 3rem 0;
}

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

.article-intro {
    margin-bottom: 3rem;
}

.lead {
    font-size: 1.25rem;
    color: #4b5563;
    font-weight: 400;
}

.content-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.icon-text {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.icon-text img {
    width: 2.5rem;
    height: 2.5rem;
    filter: invert(37%) sepia(93%) saturate(1352%) hue-rotate(204deg) brightness(95%) contrast(86%);
    margin-top: 0.5rem;
}

.room-guide,
.smart-setup-guide,
.cleaning-steps,
.maintenance-schedule,
.colour-psychology {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.room-item,
.setup-step,
.step-item,
.schedule-item,
.psychology-item {
    background: #f8fafc2c;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #2563eb;
}

.article-footer {
    background: #f8fafc;
    padding: 2rem 0;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}



.service-item {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-item img {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    filter: invert(37%) sepia(93%) saturate(1352%) hue-rotate(204deg) brightness(95%) contrast(86%);
}

/* Legal Pages */
.legal-page {
    padding: 6rem 0 2rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.last-updated {
    color: #6b7280;
    font-style: italic;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.legal-section h3 {
    color: #2563eb;
    margin-top: 2rem;
}

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

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

.contact-details {
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
}

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

.cookie-table th {
    background: #f3f4f6;
    font-weight: 600;
}

.cookie-settings-button {
    text-align: center;
    margin: 2rem 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1.5rem;
    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;
    text-align: center;
}

.cookie-content h3 {
    margin-bottom: 0.5rem;
}

.cookie-content p {
    margin-bottom: 1rem;
    color: #d1d5db;
}

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

/* Cookie Settings Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
}

.close:hover {
    color: #374151;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

.cookie-option label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.cookie-option p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* Footer */
.footer {
    background: #1f2937;
    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-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 2rem;
    height: 2rem;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #f3f4f6;
}

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

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

.footer-section a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

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

.contact-info-footer {
    font-size: 0.9rem;
}

.contact-info-footer p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info-footer img {
    width: 1rem;
    height: 1rem;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .newsletter-form form {
        flex-direction: column;
    }

    .contact-wrapper,
    .newsletter-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        flex-direction: column;
        text-align: center;
    }

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

    .icon-text img {
        margin: 0 auto 1rem;
    }

    .article-meta {
        flex-direction: column;
        text-align: center;
    }

    .detail-item {
        flex-direction: column;
        text-align: center;
    }

    .detail-item img {
        margin: 0 auto 0.5rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .modal,
    .newsletter,
    .social-links,
    .btn {
        display: none !important;
    }

    .article-page,
    .legal-page {
        padding-top: 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1, h2, h3 {
        page-break-after: avoid;
    }

    .content-section {
        page-break-inside: avoid;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.3);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1f2937;
        --text-color: #f3f4f6;
        --card-bg: #374151;
    }

    body {
        background-color: var(--bg-color);
        color: var(--text-color);
    }

    .service-card,
    .product-card,
    .review-card,
    .article-card,
    .content-card,
    .preview-card,
    .form,
    .step-item {
        background-color: var(--card-bg);
        color: var(--text-color);
    }
}
