/* ===== RESET AND BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c1810;
    background: linear-gradient(135deg, #f5f1eb 0%, #ebe4d6 100%);
    overflow-x: hidden;
}

/* ===== RETRO TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: bold;
    line-height: 1.2;
    color: #8b4513;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.1);
}

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

h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

/* ===== CONTAINER AND LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-title {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d2691e, #8b4513);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b4423;
    font-style: italic;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #d2691e, #8b4513);
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8b4513, #d2691e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

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

.btn-secondary:hover {
    background: #8b4513;
    color: white;
    transform: translateY(-2px);
}

.btn-tertiary {
    background: linear-gradient(135deg, #f4a460, #cd853f);
    color: white;
    border: 2px solid transparent;
}

.btn-tertiary:hover {
    background: linear-gradient(135deg, #cd853f, #f4a460);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.3rem;
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(135deg, #8b4513, #d2691e);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f4a460;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #f4a460;
    transform: translateY(-2px);
}

.header-contact {
    display: flex;
    align-items: center;
    color: white;
    font-weight: bold;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    filter: invert(1);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f1eb 0%, #ebe4d6 50%, #ddd5c7 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 25% 25%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(210, 105, 30, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #6b4423;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image {
    text-align: center;
    animation: slideInRight 1s ease-out;
}

.hero-banner {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #ebe4d6 0%, #ddd5c7 100%);
    position: relative;
}

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

.about-text h3 {
    font-size: 2rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #6b4423;
    font-weight: 500;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f1eb 0%, #ebe4d6 100%);
}

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

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d2691e, #8b4513);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d2691e, #8b4513);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.service-icon img {
    width: 40px;
    height: 40px;
    filter: invert(1);
}

.service-title {
    font-size: 1.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.service-description {
    color: #6b4423;
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #ddd5c7 0%, #d0c7b8 100%);
}

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

.testimonial-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #d2691e;
    font-family: serif;
}

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

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #d2691e;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    text-align: center;
}

.author-name {
    display: block;
    font-weight: bold;
    color: #8b4513;
    font-size: 1.1rem;
}

.author-location {
    color: #6b4423;
    font-size: 0.9rem;
}

/* ===== BLOG SECTION ===== */
.blog {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f1eb 0%, #ebe4d6 100%);
}

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

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

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    color: #8b4513;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-title {
    font-size: 1.3rem;
    color: #8b4513;
    margin: 1rem 0;
    line-height: 1.3;
}

.blog-excerpt {
    color: #6b4423;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-link {
    color: #d2691e;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #8b4513;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    color: white;
    text-align: center;
}

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group input:focus {
    outline: none;
    background: white;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: #8b4513;
    opacity: 0.7;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #ebe4d6 0%, #ddd5c7 100%);
}

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

.contact-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.contact-item h3 {
    color: #8b4513;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #4a4a4a;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #2c1810 0%, #1a0f09 100%);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: #d2691e;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d2691e;
}

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

.social-links a {
    color: #cccccc;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #555;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: white;
    border-color: #d2691e;
    background: #d2691e;
}

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

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f09 100%);
    color: white;
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    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: 2rem;
    flex-wrap: wrap;
}

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

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

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

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

.cookie-modal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal-content h3 {
    color: #8b4513;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #8b4513;
    cursor: pointer;
}

.cookie-category input {
    margin-right: 10px;
    transform: scale(1.2);
}

.cookie-category p {
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

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

/* ===== THANKS PAGE ===== */
.thanks-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f1eb 0%, #ebe4d6 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    animation: bounceIn 1s ease-out;
}

.thanks-title {
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thanks-submessage {
    font-size: 1.1rem;
    color: #6b4423;
    margin-bottom: 3rem;
    font-style: italic;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f1eb 0%, #ebe4d6 100%);
}

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

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

.legal-updated {
    color: #6b4423;
    font-style: italic;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.legal-text h2 {
    color: #8b4513;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    border-bottom: 2px solid #d2691e;
    padding-bottom: 0.5rem;
}

.legal-text h3 {
    color: #8b4513;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
}

.legal-text h4 {
    color: #8b4513;
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem;
}

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

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

.legal-text a {
    color: #d2691e;
    text-decoration: none;
}

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

.cookie-settings-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #ddd;
    text-align: center;
}

/* ===== ARTICLE PAGES ===== */
.article-content {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f1eb 0%, #ebe4d6 100%);
}

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

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

.breadcrumb a {
    color: #d2691e;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-title {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

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

.article-image img {
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.article-text {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.article-intro {
    font-size: 1.2rem;
    color: #4a4a4a;
    font-style: italic;
    border-left: 4px solid #d2691e;
    padding-left: 2rem;
    margin-bottom: 2rem;
    background: rgba(210, 105, 30, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 10px;
}

.article-text h2 {
    color: #8b4513;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    border-bottom: 2px solid #d2691e;
    padding-bottom: 0.5rem;
}

.article-text h3 {
    color: #8b4513;
    font-size: 1.4rem;
    margin: 2rem 0 0.8rem;
}

.article-text h4 {
    color: #8b4513;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
}

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

.article-text li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.article-cta {
    background: linear-gradient(135deg, #d2691e, #8b4513);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.article-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.article-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.related-articles {
    padding: 80px 0;
    background: linear-gradient(135deg, #ebe4d6 0%, #ddd5c7 100%);
}

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

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thanks-title {
        font-size: 2rem;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-text {
        padding: 2rem 1.5rem;
    }
    
    .legal-text {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .newsletter-form {
        padding: 0 1rem;
    }
    
    .article-text,
    .legal-text {
        padding: 1.5rem 1rem;
    }
    
    .cookie-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .thanks-actions,
    .article-cta,
    .related-articles {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .article-content,
    .legal-content {
        padding: 20px 0 !important;
    }
    
    .article-text,
    .legal-text {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== FOCUS STYLES ===== */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 2px solid #d2691e;
    outline-offset: 2px;
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        color: #fff;
        border: 2px solid #fff;
    }
    
    .btn-secondary {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
}
