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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a4480;
}

/* Buttons */
.btn-primary {
    background-color: #2c5aa0;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background-color: transparent;
    color: #2c5aa0;
    padding: 12px 24px;
    border: 2px solid #2c5aa0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

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

/* Header and Navigation */
.header {
    background-color: white;
    box-shadow: 0 2px 10px 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 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

.logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.nav-menu a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2c5aa0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

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

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

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

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

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

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

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

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: block;
}

.service-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.service-card ul {
    text-align: left;
    list-style: none;
    padding-left: 0;
}

.service-card li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 80px 0;
}

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

.about h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
}

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

.feature-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
}

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

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.reviews h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

.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);
    text-align: center;
}

.stars {
    margin-bottom: 1rem;
}

.star {
    width: 20px;
    height: 20px;
    margin: 0 2px;
}

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

.review-card cite {
    font-weight: 600;
    color: #2c5aa0;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background-color: #2c5aa0;
    color: white;
    text-align: center;
}

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

.newsletter p {
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

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

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

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

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

.contact-item {
    margin-bottom: 1.5rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    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: #2c5aa0;
}

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

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

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

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

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

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

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

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

.social-links a {
    margin-right: 1rem;
}

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

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

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

.cookie-content h3 {
    margin-bottom: 10px;
}

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

.btn-accept-all,
.btn-necessary,
.btn-settings {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-accept-all {
    background-color: #28a745;
    color: white;
}

.btn-accept-all:hover {
    background-color: #218838;
}

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

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

.btn-settings {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-settings:hover {
    background-color: white;
    color: #2c5aa0;
}

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

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    margin: 20px;
}

.cookie-category {
    margin-bottom: 20px;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 600;
}

.cookie-category input {
    margin-right: 10px;
    margin-top: 2px;
}

.cookie-category span {
    font-weight: normal;
    font-size: 14px;
    color: #666;
    margin-left: 25px;
    margin-top: 5px;
    display: block;
}

.btn-save,
.btn-close {
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-save {
    background-color: #28a745;
    color: white;
}

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

/* Thanks Page */
.thanks-section {
    padding: 120px 0 80px;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: #28a745;
}

.thanks-info {
    margin: 3rem 0;
    text-align: left;
}

.next-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.step-number {
    background-color: #2c5aa0;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.contact-urgent {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5aa0;
    margin: 1rem 0;
}

.hours {
    color: #666;
    font-style: italic;
}

.thanks-actions {
    margin-top: 3rem;
}

.thanks-actions .btn-primary,
.thanks-actions .btn-secondary {
    margin: 0 1rem 1rem 0;
}

/* Blog Styles */
.blog-header {
    padding: 120px 0 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.blog-content {
    padding: 60px 0;
}

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

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

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

.blog-icon {
    padding: 2rem 2rem 0;
    text-align: center;
}

.article-icon {
    width: 60px;
    height: 60px;
}

.blog-info {
    padding: 0 2rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-category {
    background-color: #2c5aa0;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.blog-card h2 {
    padding: 0 2rem;
    margin-bottom: 1rem;
}

.blog-card h2 a {
    color: #333;
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: #2c5aa0;
}

.blog-card p {
    padding: 0 2rem;
    color: #666;
    margin-bottom: 1rem;
}

.read-more {
    display: block;
    padding: 1rem 2rem 2rem;
    color: #2c5aa0;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    color: #1a4480;
}

/* Article Styles */
.article-content {
    padding: 120px 0 60px;
}

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

.breadcrumb {
    margin-bottom: 1rem;
    color: #666;
}

.breadcrumb a {
    color: #2c5aa0;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.article-category {
    background-color: #2c5aa0;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
}

.article-icon-header {
    margin: 2rem 0;
}

.article-main-icon {
    width: 100px;
    height: 100px;
}

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

.lead {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

.content-with-icon {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 2rem 0;
}

.content-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

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

.ingredient-card,
.tool-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.recipe-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
}

.recipe-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.room-guide {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    align-items: flex-start;
}

.room-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.tips-section {
    margin: 2rem 0;
}

.tip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.tip-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.cta-section {
    background-color: #e3f2fd;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
}

.article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.nav-back,
.nav-next {
    padding: 10px 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
    color: #2c5aa0;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.nav-back:hover,
.nav-next:hover {
    background-color: #e9ecef;
}

.article-share {
    text-align: center;
}

.social-share a {
    margin: 0 10px;
    padding: 8px 16px;
    background-color: #2c5aa0;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-share a:hover {
    background-color: #1a4480;
}

/* Additional Article Styles */
.tip-detail {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: flex-start;
}

.tip-number {
    background-color: #2c5aa0;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.tip-content {
    flex: 1;
}

.tip-content h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.routine-section {
    margin: 2rem 0;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.routine-icon {
    width: 60px;
    height: 60px;
    float: left;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.task-list {
    clear: both;
    margin-top: 1rem;
}

.task {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.task-time {
    background-color: #28a745;
    color: white;
    padding: 0.5rem;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    min-width: 60px;
    height: fit-content;
}

.task-details h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

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

.day-schedule {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.day-schedule h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.day-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.day-schedule ul {
    text-align: left;
    list-style: none;
}

.day-schedule li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.day-schedule li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

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

.strategy {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.strategy-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.lifestyle-adaptation {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    align-items: flex-start;
}

.adaptation-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.common-mistakes {
    margin: 2rem 0;
}

.mistake {
    background-color: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #ffc107;
}

.mistake h3 {
    color: #856404;
    margin-bottom: 0.5rem;
}

/* Tool and equipment styles for article 4 */
.tool-category {
    margin: 2rem 0;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.category-icon {
    width: 60px;
    height: 60px;
    float: left;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.tool-list {
    clear: both;
}

.tool-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #2c5aa0;
}

.tool-item h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.vacuum-section {
    margin: 2rem 0;
}

.section-icon {
    width: 60px;
    height: 60px;
    float: left;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.equipment-specs {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    clear: both;
}

.area-tools {
    margin: 2rem 0;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.area-icon {
    width: 60px;
    height: 60px;
    float: left;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.specialized-tools {
    clear: both;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.tool-spec {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.tool-spec h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.chemical-section {
    margin: 2rem 0;
}

.chemical-icon {
    width: 60px;
    height: 60px;
    float: left;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.chemical-content {
    clear: both;
}

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

.chemical-card {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
    text-align: center;
}

.chemical-card h5 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.technology-section {
    margin: 2rem 0;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tech-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

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

.measurement-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.measure-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

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

.warning-signs {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    background-color: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    align-items: flex-start;
}

.warning-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.maintenance-guide {
    background-color: #e8f5e8;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #28a745;
}

.maintenance-guide h3 {
    color: #28a745;
    margin-bottom: 0.5rem;
}

/* Legal Pages */
.legal-content {
    padding: 120px 0 60px;
}

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

.legal-header h1 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

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

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

.legal-body h2 {
    color: #2c5aa0;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-body h3 {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.company-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.contact-info {
    background-color: #e3f2fd;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.cookie-type {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #2c5aa0;
}

.third-party-cookie {
    background-color: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #ffc107;
}

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

.btn-cookie-settings {
    background-color: #2c5aa0;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-cookie-settings:hover {
    background-color: #1a4480;
}

.browser-instructions {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.browser-instructions h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.cookie-table {
    margin: 2rem 0;
}

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

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

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

.additional-controls {
    margin-top: 3rem;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.advanced-cookie-controls {
    margin-top: 1rem;
}

.cookie-setting {
    margin-bottom: 1.5rem;
}

.cookie-setting label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 600;
}

.cookie-setting input {
    margin-right: 10px;
    margin-top: 2px;
}

.cookie-setting p {
    font-weight: normal;
    font-size: 14px;
    color: #666;
    margin-left: 25px;
    margin-top: 5px;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        padding: 1rem 0;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu li {
        margin: 0.5rem 0;
        text-align: center;
    }

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

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .article-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .content-with-icon,
    .recipe-box,
    .room-guide,
    .tip-detail,
    .routine-section,
    .technology-section,
    .warning-signs {
        flex-direction: column;
        gap: 1rem;
    }

    .routine-icon,
    .category-icon,
    .area-icon,
    .chemical-icon,
    .section-icon {
        float: none;
        margin: 0 auto 1rem;
        display: block;
    }

    .weekly-schedule {
        grid-template-columns: 1fr;
    }

    .tip-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

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

    .cookie-table {
        overflow-x: auto;
    }

    .cookie-table table {
        min-width: 500px;
    }
}

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

    .hero h1 {
        font-size: 1.8rem;
    }

    .service-card,
    .review-card {
        padding: 1.5rem;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        display: block;
        width: 100%;
        margin: 0 0 1rem 0;
        text-align: center;
    }

    .article-body {
        padding: 0 15px;
    }

    .ingredient-grid,
    .tools-grid,
    .measurement-tools,
    .selection-tips,
    .motivation-section,
    .specialized-tools,
    .chemical-grid {
        grid-template-columns: 1fr;
    }
}
