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

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fefefe;
    overflow-x: hidden;
}

/* Retro Color Scheme */
:root {
    --primary-color: #FF6B35;      /* Warm orange */
    --secondary-color: #F7931E;    /* Golden orange */
    --accent-color: #FFD23F;       /* Yellow */
    --text-dark: #2c3e50;          /* Dark blue-gray */
    --text-light: #7f8c8d;        /* Light gray */
    --background-light: #fefefe;   /* Off-white */
    --background-cream: #FFF8DC;   /* Cream */
    --border-color: #e1e8ed;       /* Light border */
    --success-color: #27ae60;      /* Green */
    --warning-color: #f39c12;      /* Orange */
    --error-color: #e74c3c;        /* Red */
    
    /* Retro gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --gradient-secondary: linear-gradient(135deg, #FFD23F 0%, #FF6B35 100%);
    --gradient-background: linear-gradient(135deg, #FFF8DC 0%, #fefefe 100%);
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(255, 107, 53, 0.1);
    --shadow-medium: 0 4px 20px rgba(255, 107, 53, 0.15);
    --shadow-heavy: 0 8px 30px rgba(255, 107, 53, 0.2);
    --shadow-retro: 4px 4px 0px rgba(44, 62, 80, 0.2);
    
    /* Typography */
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-secondary: 'Arial', 'Helvetica', sans-serif;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: var(--font-secondary);
    box-shadow: var(--shadow-retro);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px rgba(44, 62, 80, 0.3);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: var(--background-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px rgba(44, 62, 80, 0.3);
    text-decoration: none;
}

.btn-tertiary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-tertiary:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px rgba(44, 62, 80, 0.3);
    text-decoration: none;
}

.cta-button {
    background: var(--gradient-secondary);
    color: var(--text-dark);
    border: 3px solid var(--secondary-color);
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-retro);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 8px 8px 0px rgba(44, 62, 80, 0.3);
}

/* Header and Navigation */
.header {
    background: var(--background-light);
    box-shadow: var(--shadow-medium);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: var(--font-primary);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

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

.nav-menu li a {
    color: var(--text-dark);
    font-weight: bold;
    font-size: 0.9rem;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-secondary);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: var(--gradient-background);
    padding: 120px 0 80px;
    border-bottom: 5px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 107, 53, 0.05) 10px,
        rgba(255, 107, 53, 0.05) 20px
    );
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    color: var(--text-dark);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    border: 5px solid var(--primary-color);
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

/* About Section */
.about {
    background: var(--background-cream);
    border-top: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text ul {
    list-style: none;
    margin: 30px 0;
}

.about-text li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.about-text li::before {
    content: '🐾';
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 1.2rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-retro);
    transition: transform 0.3s ease;
}

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

.stat h4 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.stat p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
}

/* Services Section */
.services {
    background: var(--background-light);
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-retro);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 8px 8px 0px rgba(44, 62, 80, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    background: var(--background-cream);
    border-top: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-retro);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 6px 6px 0px rgba(44, 62, 80, 0.3);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-content h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.testimonial-content span {
    color: var(--text-light);
    font-size: 1rem;
}

/* Blog Section */
.blog {
    background: var(--background-light);
}

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

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-retro);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 8px 8px 0px rgba(44, 62, 80, 0.3);
}

.blog-card.featured {
    grid-column: span 2;
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid var(--primary-color);
}

.blog-card.featured .blog-image {
    height: 250px;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.blog-content h2,
.blog-content h3 {
    margin-bottom: 15px;
}

.blog-content h2 a,
.blog-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.blog-content h2 a:hover,
.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-meta {
    display: flex;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 15px;
}

.blog-cta {
    text-align: center;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Newsletter Section */
.newsletter {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    border-top: 5px solid var(--secondary-color);
    border-bottom: 5px solid var(--secondary-color);
}

.newsletter h2 {
    color: white;
    margin-bottom: 15px;
}

.newsletter p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    align-items: end;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 3px solid white;
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 210, 63, 0.3);
}

.form-group input::placeholder {
    color: var(--text-light);
}

/* Contact Section */
.contact {
    background: var(--background-cream);
    border-top: 3px solid var(--secondary-color);
}

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

.contact-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-retro);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 6px 6px 0px rgba(44, 62, 80, 0.3);
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
    border-top: 5px solid var(--primary-color);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-brand h3 {
    color: var(--primary-color);
    margin: 0;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

.footer-section a:hover,
.footer-section a.active {
    color: var(--primary-color);
    text-decoration: none;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

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

/* Page Headers */
.page-header {
    background: var(--gradient-background);
    padding: 120px 0 60px;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
}

.page-header h1 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
    background: var(--background-light);
}

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

.legal-text h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.legal-text h3 {
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-text li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.contact-info {
    background: var(--background-cream);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
}

.warning-box {
    background: #fff3cd;
    border: 2px solid var(--warning-color);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.warning-box h3 {
    color: var(--warning-color);
    margin-bottom: 15px;
}

.cookie-settings-button {
    text-align: center;
    margin-top: 40px;
}

/* Article Pages */
.article-header {
    background: var(--gradient-background);
    padding: 120px 0 40px;
    border-bottom: 3px solid var(--primary-color);
}

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

.back-to-blog {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.article-category {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-header h1 {
    margin-bottom: 20px;
    max-width: 800px;
}

.article-info {
    display: flex;
    gap: 15px;
    color: var(--text-light);
    font-size: 1rem;
}

.article-content {
    padding: 60px 0;
    background: var(--background-light);
}

.article-image {
    margin-bottom: 40px;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    border: 3px solid var(--primary-color);
}

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

.article-body h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.article-body h3 {
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.article-body li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.article-body strong {
    color: var(--text-dark);
}

.lead {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--background-cream);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.article-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.article-cta p {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.related-articles {
    background: var(--background-cream);
    padding: 60px 0;
    border-top: 3px solid var(--secondary-color);
}

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

/* Thanks Page */
.thanks-page {
    background: var(--gradient-background);
    padding: 120px 0 80px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.thanks-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-retro);
    text-align: left;
}

.thanks-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

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

.thanks-info li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.thanks-info li:last-child {
    border-bottom: none;
}

.thanks-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Cookie Banner and Modal */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 10000;
    border-top: 3px solid var(--primary-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border: 3px solid var(--primary-color);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 2px solid var(--border-color);
}

.cookie-modal-header h3 {
    margin: 0;
    color: var(--primary-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--primary-color);
}

.cookie-modal-body {
    padding: 30px;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-header h4 {
    margin: 0;
    color: var(--text-dark);
}

.cookie-category input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.cookie-category p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.cookie-modal-footer {
    padding: 20px 30px;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow-medium);
        border-top: 3px solid var(--primary-color);
        transform: translateY(-100%);
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu li a {
        display: block;
        padding: 15px;
        border-radius: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat {
        flex: 1;
        margin: 0 10px;
    }
    
    .newsletter-form {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .article-info {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .blog-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .btn-primary, .btn-secondary, .btn-tertiary {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .service-card, .testimonial-card, .contact-item {
        padding: 25px 20px;
    }
    
    .stat {
        padding: 20px 15px;
    }
    
    .stat h4 {
        font-size: 2rem;
    }
    
    .form-group input {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .cookie-modal-content {
        margin: 10px;
    }
    
    .cookie-modal-header, .cookie-modal-body, .cookie-modal-footer {
        padding: 20px;
    }
}

/* Print Styles */
@media print {
    .header, .footer, .cookie-banner, .cookie-modal {
        display: none;
    }
    
    .page-header {
        padding: 20px 0;
    }
    
    .legal-content, .article-content {
        padding: 0;
    }
    
    .thanks-page {
        padding: 20px 0;
    }
    
    * {
        box-shadow: none !important;
        border-radius: 0 !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #FF4500;
        --secondary-color: #FF6600;
        --text-dark: #000000;
        --text-light: #333333;
        --background-light: #FFFFFF;
        --border-color: #000000;
    }
    
    .btn-primary, .btn-secondary, .btn-tertiary {
        border-width: 3px;
    }
    
    .service-card, .testimonial-card, .blog-card, .contact-item {
        border-width: 3px;
    }
}

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

/* Focus Styles for Accessibility */
*:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

.btn-primary:focus,
.btn-secondary:focus,
.btn-tertiary:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

/* Skip to Content Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10002;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}
