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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: #f8fafc;
    color: #1e293b;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: #3b82f6;
    color: white;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu li a {
    font-weight: 500;
    color: #64748b;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #3b82f6;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.btn-contact {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-contact::after {
    display: none;
}

/* Mobile menu toggle */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1e293b;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* ===== SECTIONS COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 0;
    background: white;
}

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

.service-card {
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

/* Glass effect variant */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-effect::before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.1));
}

.glass-effect:hover::before {
    opacity: 1;
}

/* Neon border variant */
.neon-border {
    background: #1e293b;
    color: white;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.neon-border::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3b82f6, #10b981, #f59e0b, #ef4444);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.neon-border:hover::after {
    opacity: 1;
}

/* Gradient background variant */
.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-card p {
    margin-bottom: 24px;
    opacity: 0.9;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

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

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

.about-intro {
    font-size: 1.125rem;
    margin-bottom: 32px;
    color: #475569;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-item h4 {
    margin-bottom: 12px;
    color: #1e293b;
}

.feature-item p {
    color: #64748b;
    font-size: 14px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 40px;
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.testimonial-card.active {
    display: block;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.testimonial-card blockquote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 32px;
    color: #374151;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.author-info strong {
    display: block;
    color: #1e293b;
    margin-bottom: 4px;
}

.author-info span {
    color: #64748b;
    font-size: 14px;
}

.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.testimonial-prev,
.testimonial-next {
    background: #3b82f6;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #1d4ed8;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #3b82f6;
}

/* ===== BLOG SECTION ===== */
.blog-preview {
    padding: 80px 0;
    background: #f8fafc;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

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

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

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.blog-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #1e293b;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-badge.featured {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.blog-category {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(59, 130, 246, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    color: #64748b;
}

.blog-card h2,
.blog-card h3 {
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card h2 {
    font-size: 1.5rem;
}

.blog-card h3 {
    font-size: 1.25rem;
}

.blog-card h2 a,
.blog-card h3 a {
    color: #1e293b;
    transition: color 0.3s ease;
}

.blog-card h2 a:hover,
.blog-card h3 a:hover {
    color: #3b82f6;
}

.blog-excerpt {
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.6;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tag {
    background: #e2e8f0;
    color: #475569;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.read-more {
    color: #3b82f6;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

.newsletter-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.benefit {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.newsletter-form .form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: #1e293b;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.newsletter-privacy {
    font-size: 14px;
    opacity: 0.8;
}

.newsletter-privacy a {
    color: #93c5fd;
    text-decoration: underline;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1e293b;
}

.contact-info p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 24px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-item strong {
    display: block;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-item p {
    color: #64748b;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-links a {
    padding: 10px 20px;
    background: #3b82f6;
    color: white;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin-top: 16px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 16px;
    color: white;
    font-size: 18px;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover,
.footer-column ul li a.active {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #3b82f6;
}

/* ===== COOKIE BANNER & MODAL ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: white;
    padding: 20px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-text h4 {
    margin-bottom: 8px;
}

.cookie-text p {
    opacity: 0.9;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
}

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

.cookie-modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    padding: 24px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 24px;
}

.cookie-modal-header h3 {
    margin: 0;
    color: #1e293b;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #64748b;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #1e293b;
}

.cookie-modal-body {
    padding: 0 24px;
}

.cookie-category {
    margin-bottom: 24px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cookie-category h4 {
    margin: 0 0 8px 0;
    color: #1e293b;
}

.cookie-category p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #3b82f6;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

input:disabled + .slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* ===== BLOG PAGE STYLES ===== */
.blog-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

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

.blog-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.blog-stats .stat {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 14px;
}

.blog-articles {
    padding: 80px 0;
    background: white;
}

.featured-article {
    grid-column: 1 / -1;
}

.featured-article .blog-content {
    padding: 32px;
}

.featured-article h2 {
    font-size: 2rem;
}

.read-time {
    color: #64748b;
    font-size: 14px;
}

/* ===== ARTICLE PAGE STYLES ===== */
.article-page {
    padding-top: 80px;
}

.article-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.breadcrumb {
    margin-bottom: 16px;
    font-size: 14px;
    color: #64748b;
}

.breadcrumb a {
    color: #3b82f6;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 14px;
    flex-wrap: wrap;
}

.article-category {
    background: #3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 500;
}

.article-date,
.read-time {
    color: #64748b;
}

.article-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.1;
}

.article-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article-content {
    padding: 80px 0;
}

.article-content .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
}

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

.article-section {
    margin-bottom: 48px;
}

.article-section h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.article-section h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 32px 0 16px 0;
}

.article-section h4 {
    font-size: 1.25rem;
    color: #374151;
    margin: 24px 0 12px 0;
}

.article-section p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #374151;
}

.article-section ul,
.article-section ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.article-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #374151;
}

.article-section ul li {
    list-style: disc;
}

.article-section ol li {
    list-style: decimal;
}

/* Article special elements */
.experience-card,
.highlight-card,
.innovation-card,
.garden-card,
.wine-card,
.specialty-card,
.restaurant-card,
.hotel-card,
.station-card,
.activity-card,
.workshop-card,
.spa-card,
.tradition-card,
.accommodation-card {
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    padding: 24px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
}

.experience-card h4,
.highlight-card h4,
.innovation-card h4,
.garden-card h4,
.wine-card h4,
.specialty-card h4,
.restaurant-card h4,
.hotel-card h4,
.station-card h4,
.activity-card h4,
.workshop-card h4,
.spa-card h4,
.tradition-card h4,
.accommodation-card h4 {
    color: #1e293b;
    margin-bottom: 12px;
}

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

.sidebar-widget {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

.sidebar-widget h3 {
    margin-bottom: 16px;
    color: #1e293b;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-article {
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.related-article:hover {
    background: #f8fafc;
    border-color: #3b82f6;
}

.related-article h4 {
    font-size: 14px;
    margin-bottom: 4px;
    color: #1e293b;
}

.related-article span {
    font-size: 12px;
    color: #64748b;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.email {
    background: #64748b;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Article CTA */
.article-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    min-height: 80vh;
}

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

.thank-you-icon {
    margin-bottom: 32px;
}

.thank-you-title {
    font-size: 3rem;
    color: #1e293b;
    margin-bottom: 24px;
}

.thank-you-message {
    margin-bottom: 48px;
}

.thank-you-message .lead {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 16px;
}

.thank-you-benefits {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 48px;
    text-align: left;
}

.thank-you-benefits h3 {
    text-align: center;
    margin-bottom: 32px;
    color: #1e293b;
}

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

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.benefits-list strong {
    display: block;
    color: #1e293b;
    margin-bottom: 4px;
}

.benefits-list p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

.thank-you-actions {
    margin-bottom: 48px;
}

.thank-you-social p {
    margin-bottom: 16px;
    color: #64748b;
}

.subscription-details {
    background: #dbeafe;
    padding: 24px;
    border-radius: 12px;
    margin-top: 32px;
}

.email-confirmed {
    font-size: 18px;
    color: #1e40af;
    margin-bottom: 8px;
}

.next-steps {
    color: #64748b;
    margin: 0;
}

.error-message {
    background: #fee2e2;
    color: #dc2626;
    padding: 24px;
    border-radius: 12px;
    margin-top: 32px;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 120px 0 80px;
    background: #f8fafc;
}

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

.legal-header .breadcrumb {
    margin-bottom: 24px;
}

.legal-header h1 {
    font-size: 3rem;
    color: #1e293b;
    margin-bottom: 16px;
}

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

.legal-content {
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.legal-section h3 {
    font-size: 1.5rem;
    color: #374151;
    margin: 32px 0 16px 0;
}

.legal-section h4 {
    font-size: 1.25rem;
    color: #475569;
    margin: 24px 0 12px 0;
}

.legal-section p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #374151;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #374151;
}

.legal-section ul li {
    list-style: disc;
}

.legal-section ol li {
    list-style: decimal;
}

/* Legal page special elements */
.company-info,
.contact-info,
.authority-contact,
.contact-details,
.support-info {
    background: #f1f5f9;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.purpose-table,
.retention-periods,
.security-measures,
.data-collected,
.conservation-periods {
    margin: 24px 0;
}

.retention-item,
.period-item,
.measure-category,
.data-category {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 16px;
    border-left: 4px solid #3b82f6;
}

.retention-item h4,
.period-item h4,
.measure-category h4,
.data-category h4 {
    color: #1e293b;
    margin-bottom: 8px;
}

.rights-list,
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.right-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.right-item h4 {
    color: #1e293b;
    margin-bottom: 12px;
}

.right-item p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

/* Cookie page specific styles */
.cookie-types {
    display: grid;
    gap: 24px;
    margin: 32px 0;
}

.cookie-type {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.cookie-type h3 {
    color: #1e293b;
    margin-bottom: 12px;
}

.cookie-type p {
    margin-bottom: 8px;
    font-size: 14px;
}

.cookies-table {
    margin: 32px 0;
}

.cookie-item {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.cookie-item h4 {
    color: #1e293b;
    margin-bottom: 8px;
    font-family: monospace;
    background: #e2e8f0;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.cookie-item p {
    margin-bottom: 4px;
    font-size: 14px;
}

.preference-center {
    background: #dbeafe;
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
    text-align: center;
}

.browser-instructions {
    margin: 24px 0;
}

.browser-item {
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.browser-item h5 {
    color: #1e293b;
    margin-bottom: 8px;
}

.browser-item p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
    font-family: monospace;
}

.third-party-cookies {
    display: grid;
    gap: 20px;
    margin: 24px 0;
}

.third-party-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.third-party-item h4 {
    color: #1e293b;
    margin-bottom: 12px;
}

.third-party-item p {
    margin-bottom: 8px;
    font-size: 14px;
}

.third-party-item a {
    color: #3b82f6;
    text-decoration: underline;
    font-size: 14px;
}

.info-box {
    background: #dbeafe;
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
}

.info-box h4 {
    color: #1e40af;
    margin-bottom: 16px;
}

.info-box ul li {
    color: #1e40af;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .thank-you-title {
        font-size: 2rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .legal-content {
        padding: 40px 24px;
    }

    .rights-list,
    .rights-grid {
        grid-template-columns: 1fr;
    }

    .cookie-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .newsletter h2 {
        font-size: 2rem;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .article-title {
        font-size: 1.75rem;
    }

    .thank-you-title {
        font-size: 1.75rem;
    }

    .legal-header h1 {
        font-size: 2rem;
    }

    .legal-content {
        padding: 24px 16px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

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