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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    overflow-x: hidden;
}

.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;
    color: #2c3e50;
}

h2 {
    font-size: 2rem;
    color: #34495e;
}

h3 {
    font-size: 1.5rem;
    color: #34495e;
}

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

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

a:hover {
    color: #c0392b;
}

/* Retro Color Palette */
:root {
    --retro-orange: #ff6b35;
    --retro-teal: #2dd4bf;
    --retro-pink: #ec4899;
    --retro-yellow: #fbbf24;
    --retro-purple: #8b5cf6;
    --retro-green: #10b981;
    --retro-cream: #fef7ed;
    --retro-brown: #92400e;
    --dark-blue: #0f172a;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--retro-orange), var(--retro-pink));
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

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

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

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

.cookie-buttons button {
    background: white;
    color: var(--retro-orange);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-buttons button:hover {
    background: var(--retro-cream);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 1001;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

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

.cookie-modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-option {
    margin: 20px 0;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    transition: border-color 0.3s ease;
}

.cookie-option:hover {
    border-color: var(--retro-teal);
}

.cookie-option label {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 5px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.cookie-modal-buttons button {
    flex: 1;
    background: var(--retro-teal);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-modal-buttons button:hover {
    background: var(--retro-green);
    transform: translateY(-2px);
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--retro-cream), white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 15px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--retro-orange);
}

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

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

.nav-menu a {
    color: var(--dark-blue);
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: linear-gradient(135deg, var(--retro-teal), var(--retro-green));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 212, 191, 0.3);
}

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

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

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--retro-cream), var(--light-gray));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="%23ff6b35" opacity="0.1"/><circle cx="75" cy="75" r="3" fill="%232dd4bf" opacity="0.1"/><circle cx="50" cy="10" r="1.5" fill="%23ec4899" opacity="0.1"/></svg>');
    background-size: 100px 100px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

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

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--retro-orange), var(--retro-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    animation: gentle-float 6s ease-in-out infinite;
}

@keyframes gentle-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--retro-orange), var(--retro-pink));
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: var(--retro-orange);
    padding: 15px 30px;
    border: 2px solid var(--retro-orange);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.secondary-button:hover {
    background: var(--retro-orange);
    color: white;
    transform: translateY(-2px);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

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

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

.about-features {
    list-style: none;
    margin-top: 30px;
}

.about-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    color: var(--dark-blue);
}

.about-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--retro-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray), var(--retro-cream));
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 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;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--retro-teal), var(--retro-green));
}

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

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.service-card ul li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: var(--medium-gray);
}

.service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--retro-orange);
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

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

.testimonial-card {
    background: linear-gradient(135deg, var(--retro-cream), white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: var(--retro-teal);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--retro-teal);
}

.testimonial-content p {
    font-style: italic;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.testimonial-author strong {
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Blog Section */
.blog-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray), white);
}

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

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

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--retro-pink), var(--retro-purple));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-content h3 {
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-content h3 a {
    color: var(--dark-blue);
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--retro-orange);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.blog-cta {
    text-align: center;
    margin-top: 60px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--dark-blue);
    color: white;
}

.contact .section-header h2,
.contact .section-header p {
    color: white;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    color: var(--retro-teal);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

.contact-item a {
    color: var(--retro-teal);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: white;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--retro-teal);
    background: rgba(255,255,255,0.15);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
}

.checkbox-group label {
    margin-bottom: 0;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--retro-teal);
}

.footer-logo img {
    width: 35px;
    height: 35px;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

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

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

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

.footer-section ul li a:hover {
    color: var(--retro-teal);
}

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

.social-links a {
    color: #cbd5e1;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--retro-teal);
    color: white;
    border-color: var(--retro-teal);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #94a3b8;
}

/* Legal Pages */
.legal-page {
    margin-top: 80px;
    padding: 60px 0;
    background: white;
}

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

.legal-content h1 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.last-updated {
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: 40px;
}

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

.legal-section h2 {
    color: var(--retro-orange);
    border-bottom: 2px solid var(--retro-cream);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.legal-section h3 {
    color: var(--dark-blue);
    margin: 30px 0 15px;
}

.legal-section ul, .legal-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

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

.legal-actions {
    text-align: center;
    margin: 60px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

address {
    font-style: normal;
    line-height: 1.6;
    color: var(--medium-gray);
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--retro-teal);
}

/* Cookie Policy Tables */
.cookie-table {
    margin: 30px 0;
}

.cookie-table h3 {
    color: var(--retro-orange);
    margin: 30px 0 15px;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.cookie-table th {
    background: var(--retro-teal);
    color: white;
    font-weight: 600;
}

.cookie-table tr:hover {
    background: var(--retro-cream);
}

.cookie-management {
    text-align: center;
    margin: 30px 0;
}

/* Thanks Page */
.thanks-page {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--retro-cream), white);
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: block;
}

.thanks-content h1 {
    color: var(--retro-orange);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
}

.thanks-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: left;
}

.thanks-info h2 {
    text-align: center;
    color: var(--dark-blue);
    margin-bottom: 30px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    padding: 20px;
    background: var(--light-gray);
    border-radius: 15px;
    border-left: 4px solid var(--retro-teal);
}

.step strong {
    color: var(--retro-orange);
    display: block;
    margin-bottom: 5px;
}

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

.emergency-contact {
    background: var(--retro-cream);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.emergency-contact h3 {
    color: var(--retro-orange);
    text-align: center;
    margin-bottom: 15px;
}

.emergency-contact p {
    text-align: center;
    margin-bottom: 10px;
}

.emergency-contact a {
    color: var(--retro-orange);
    font-weight: 600;
}

/* Blog Pages */
.blog-header {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--retro-orange), var(--retro-pink));
    color: white;
    text-align: center;
}

.blog-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 15px;
}

.blog-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

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

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

.blog-card.featured .blog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.blog-card.featured img {
    height: 300px;
}

.blog-newsletter {
    background: linear-gradient(135deg, var(--retro-teal), var(--retro-green));
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
}

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

.newsletter-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto 20px;
}

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

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

.newsletter-privacy {
    font-size: 0.9rem;
    opacity: 0.8;
}

.newsletter-privacy a {
    color: white;
    text-decoration: underline;
}

.blog-categories {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
    margin-top: 60px;
}

.blog-categories h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-blue);
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.category-tag {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--retro-teal);
    color: var(--retro-teal);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.category-tag:hover,
.category-tag.active {
    background: var(--retro-teal);
    color: white;
}

/* Article Pages */
.article-page {
    margin-top: 80px;
    padding: 40px 0;
    background: white;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.breadcrumb a {
    color: var(--retro-teal);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--retro-orange);
}

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

.article-header {
    text-align: center;
    margin-bottom: 50px;
}

.article-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--retro-pink), var(--retro-purple));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.article-header h1 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.article-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-blue);
}

.article-intro {
    font-size: 1.3rem;
    color: var(--medium-gray);
    font-style: italic;
    border-left: 4px solid var(--retro-teal);
    padding-left: 20px;
    margin: 40px 0;
}

.article-body h2 {
    color: var(--retro-orange);
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.article-body h3 {
    color: var(--dark-blue);
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.article-body ul, .article-body ol {
    margin: 20px 0 20px 30px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body li strong {
    color: var(--retro-orange);
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    margin: 60px 0;
    padding: 30px 0;
    border-top: 2px solid var(--light-gray);
    border-bottom: 2px solid var(--light-gray);
}

.nav-prev, .nav-next {
    padding: 15px 25px;
    background: var(--light-gray);
    border-radius: 10px;
    color: var(--retro-teal);
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-prev:hover, .nav-next:hover {
    background: var(--retro-teal);
    color: white;
    transform: translateY(-2px);
}

.related-articles {
    margin: 60px 0;
}

.related-articles h3 {
    text-align: center;
    color: var(--dark-blue);
    margin-bottom: 40px;
}

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

.related-card {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.related-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.related-card h4 {
    font-size: 1rem;
    line-height: 1.4;
}

.related-card a {
    color: var(--dark-blue);
    transition: color 0.3s ease;
}

.related-card a:hover {
    color: var(--retro-orange);
}

.article-cta {
    background: linear-gradient(135deg, var(--retro-cream), var(--light-gray));
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
}

.article-cta h3 {
    color: var(--retro-orange);
    margin-bottom: 15px;
}

.article-cta p {
    color: var(--medium-gray);
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        gap: 10px;
    }

    .nav-menu.active {
        display: flex;
    }

    .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);
    }

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

    .hero-text h1 {
        font-size: 2.2rem;
    }

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

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

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

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

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

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

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

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

    .article-meta {
        flex-direction: column;
        gap: 10px;
    }

    .article-navigation {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .legal-actions {
        flex-direction: column;
        align-items: center;
    }

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

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

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

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

    .hero {
        padding: 40px 0;
    }

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

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

    .service-card,
    .testimonial-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .article-hero-image {
        height: 250px;
    }

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

    .category-tags {
        gap: 10px;
    }

    .category-tag {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--retro-orange), var(--retro-pink));
    z-index: 1000;
    transition: width 0.3s ease;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .article-navigation,
    .related-articles,
    .article-cta {
        display: none;
    }

    .article-page {
        margin-top: 0;
    }

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

    h1, h2, h3 {
        color: black;
    }

    a {
        color: black;
        text-decoration: underline;
    }
}
