/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #5a6c7d;
}

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

a:hover {
    color: #357abd;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.btn-primary {
    background-color: #4A90E2;
    color: white;
}

.btn-primary:hover {
    background-color: #357abd;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    color: white;
}

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

.btn-outline:hover {
    background-color: #4A90E2;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

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

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

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

.cookie-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: #7ED321;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: white;
}

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

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

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

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

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

.cookie-modal-content h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.cookie-category label:hover {
    background-color: #f8f9fa;
}

.cookie-category input[type="checkbox"] {
    margin-top: 2px;
}

.cookie-desc {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 4px;
}

.cookie-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: #2c3e50;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #4A90E2;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #4A90E2;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat svg {
    width: 32px;
    height: 32px;
    color: #4A90E2;
    flex-shrink: 0;
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.stat span {
    font-size: 0.9rem;
    color: #666;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Services Section */
.services {
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    color: #4A90E2;
    margin: 0 auto 20px;
    display: block;
}

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

.service-card p {
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    font-size: 2.5rem;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: white;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: #2c3e50;
    color: white;
}

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

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

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

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

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

.form-group {
    position: relative;
}

.form-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #666;
}

.form-group input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #4A90E2;
}

.form-group input::placeholder {
    color: #adb5bd;
}

/* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.blog-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-icon {
    width: 50px;
    height: 50px;
    color: #4A90E2;
    margin-bottom: 20px;
}

.blog-card h3 a {
    color: #2c3e50;
    font-size: 1.25rem;
    line-height: 1.3;
}

.blog-card h3 a:hover {
    color: #4A90E2;
}

.blog-card p {
    margin: 15px 0 20px;
    line-height: 1.7;
}

.read-more {
    color: #4A90E2;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #357abd;
}

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

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

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

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

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

.footer-brand .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.125rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover,
.footer-section ul li a.active {
    color: #4A90E2;
}

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

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

.social-links a:hover {
    background-color: #4A90E2;
    transform: translateY(-2px);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: #4A90E2;
    flex-shrink: 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Thank You Page */
.thank-you {
    padding: 80px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

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

.thank-you-icon svg {
    width: 100px;
    height: 100px;
}

.thank-you h1 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.next-steps h3 {
    text-align: center;
    margin-bottom: 30px;
}

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

.step {
    text-align: center;
    padding: 20px;
}

.step svg {
    width: 50px;
    height: 50px;
    color: #4A90E2;
    margin-bottom: 15px;
}

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

.social-share {
    margin-top: 40px;
}

.social-share p {
    margin-bottom: 20px;
    font-weight: 500;
}

.social-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
}

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

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

.social-btn svg {
    width: 20px;
    height: 20px;
}

/* Blog Pages */
.blog-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

.blog-hero h1 {
    color: white;
    margin-bottom: 20px;
}

.blog-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.blog-hero-visual {
    display: flex;
    justify-content: center;
}

.blog-hero-svg {
    max-width: 300px;
    width: 100%;
    height: auto;
}

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

.articles-grid {
    display: grid;
    gap: 40px;
}

.article-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.article-card.featured {
    border-left: 4px solid #4A90E2;
}

.article-icon {
    width: 50px;
    height: 50px;
    color: #4A90E2;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

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

.article-date,
.reading-time {
    color: #666;
}

.article-card h2,
.article-card h3 {
    margin-bottom: 15px;
}

.article-card h2 a,
.article-card h3 a {
    color: #2c3e50;
    line-height: 1.3;
}

.article-card h2 a:hover,
.article-card h3 a:hover {
    color: #4A90E2;
}

.newsletter-cta {
    padding: 80px 0;
    background-color: #2c3e50;
    color: white;
    text-align: center;
}

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

.newsletter-icon {
    margin-bottom: 20px;
}

.newsletter-icon svg {
    width: 50px;
    height: 50px;
    color: #4A90E2;
}

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

.newsletter-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Article Page Styles */
.article-page {
    padding: 40px 0 80px;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #4A90E2;
}

.article-lead {
    font-size: 1.25rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin: 30px 0;
}

.article-hero-visual {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

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

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

.content-section {
    margin-bottom: 50px;
}

.content-with-visual {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 30px 0;
}

.content-visual {
    display: flex;
    justify-content: center;
}

.content-svg {
    max-width: 200px;
    width: 100%;
    height: auto;
}

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

.benefit-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    color: #4A90E2;
    margin: 0 auto 20px;
}

.practice-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.example-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #4A90E2;
}

.example-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.home-support-list {
    list-style: none;
    margin: 30px 0;
}

.home-support-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.home-support-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7ED321;
    font-weight: bold;
}

.impact-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    margin: 40px 0;
}

.impact-highlight p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.impact-highlight p:last-child {
    margin-bottom: 0;
}

.article-footer {
    max-width: 800px;
    margin: 60px auto 0;
    border-top: 2px solid #e9ecef;
    padding-top: 40px;
}

.author-info {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background-color: #4A90E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar svg {
    width: 30px;
    height: 30px;
    color: white;
}

.author-details h4 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.author-details p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.article-actions {
    margin-bottom: 40px;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-buttons span {
    font-weight: 500;
    color: #666;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

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

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

.share-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.related-articles h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.related-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.related-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.related-card h4:hover {
    color: #4A90E2;
}

.related-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Legal Pages */
.legal-page {
    padding: 40px 0 80px;
}

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

.legal-intro {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin: 30px 0;
}

.last-updated {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    margin-top: 20px;
}

.last-updated svg {
    width: 16px;
    height: 16px;
}

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

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

.legal-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.legal-section h3 {
    color: #2c3e50;
    margin: 30px 0 15px;
}

.legal-section ul {
    margin: 15px 0 15px 20px;
}

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

.contact-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 20px 0;
}

.contact-details .contact-item {
    margin-bottom: 15px;
    color: #333;
}

.contact-details .contact-item:last-child {
    margin-bottom: 0;
}

/* Cookie Policy Specific Styles */
.cookie-types {
    display: grid;
    gap: 30px;
    margin: 30px 0;
}

.cookie-type-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #4A90E2;
}

.cookie-type-card h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.cookie-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.cookie-status.required {
    background-color: #E74C3C;
    color: white;
}

.cookie-status.optional {
    background-color: #95a5a6;
    color: white;
}

.cookie-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.cookie-details h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.cookie-details ul {
    margin-left: 20px;
}

.third-party-services {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.service-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.service-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.cookie-settings-link {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0;
}

.cookie-settings-link .btn {
    margin-bottom: 15px;
}

.browser-links {
    margin: 20px 0;
}

.browser-links h4 {
    margin-bottom: 10px;
}

.browser-links ul {
    margin-left: 20px;
}

.browser-links a {
    color: #4A90E2;
}

/* Educational Toys Guide Specific Styles */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.criteria-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.criteria-icon {
    width: 50px;
    height: 50px;
    color: #4A90E2;
    margin: 0 auto 20px;
}

.age-categories {
    display: grid;
    gap: 40px;
    margin: 30px 0;
}

.age-category {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.age-category h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.age-icon {
    width: 30px;
    height: 30px;
    color: #4A90E2;
}

.toy-recommendations {
    margin-top: 20px;
}

.toy-recommendations h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.toy-recommendations ul {
    margin-left: 20px;
}

.toy-recommendations li {
    margin-bottom: 10px;
}

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

.warning-item {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.warning-icon {
    width: 40px;
    height: 40px;
    color: #E74C3C;
    margin: 0 auto 15px;
}

.warning-item h4 {
    color: #E74C3C;
    margin-bottom: 10px;
}

.budget-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.budget-tip {
    background: #f0fff4;
    border: 1px solid #c6f6d5;
    padding: 25px;
    border-radius: 12px;
}

.budget-tip h4 {
    color: #2f855a;
    margin-bottom: 10px;
}

.enhancement-strategies {
    list-style: none;
    margin: 30px 0;
}

.enhancement-strategies li {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4A90E2;
}

.comparison-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    margin: 40px 0;
}

.comparison-highlight p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.decision-checklist {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    background: white;
    border-radius: 8px;
}

.checklist-item svg {
    width: 20px;
    height: 20px;
    color: #7ED321;
    flex-shrink: 0;
}

/* Child Development Stages Specific Styles */
.stage-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
}

.stage-icon {
    width: 50px;
    height: 50px;
    color: #4A90E2;
    flex-shrink: 0;
}

.stage-description {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.development-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.development-area {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.development-area h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #4A90E2;
}

.development-area ul {
    margin-left: 20px;
}

.development-area li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.support-strategies {
    background: #e8f4f8;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #4A90E2;
}

.support-strategies h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.support-strategies ul {
    margin-left: 20px;
}

.warning-signs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.warning-category {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    padding: 25px;
    border-radius: 12px;
}

.warning-category h4 {
    color: #E74C3C;
    margin-bottom: 15px;
}

.warning-category ul {
    margin-left: 20px;
}

.individual-support {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.support-tip {
    background: #f0fff4;
    border: 1px solid #c6f6d5;
    padding: 25px;
    border-radius: 12px;
}

.support-tip h4 {
    color: #2f855a;
    margin-bottom: 10px;
}

.play-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    margin: 40px 0;
}

.play-highlight p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.play-highlight ul {
    margin-left: 20px;
}

.play-highlight li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.95);
}

.foundation-elements {
    list-style: none;
    margin: 30px 0;
}

.foundation-elements li {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4A90E2;
}

/* Creative Play Specific Styles */
.play-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.play-type-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.play-icon {
    width: 40px;
    height: 40px;
    color: #4A90E2;
    margin: 0 auto 15px;
}

.play-type-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.environment-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.tip-card {
    background: #e8f4f8;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #4A90E2;
}

.tip-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.age-groups {
    display: grid;
    gap: 30px;
    margin: 30px 0;
}

.age-group {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.age-group h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.age-group ul {
    margin-left: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .content-with-visual {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .practice-examples {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .share-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .criteria-grid,
    .warning-grid,
    .budget-tips,
    .development-areas,
    .warning-signs,
    .individual-support,
    .play-types,
    .environment-tips {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .age-categories,
    .age-groups {
        gap: 25px;
    }
    
    .stage-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.125rem;
    }
    
    .cookie-modal-content {
        padding: 20px;
        margin: 10px;
    }
    
    .article-hero-visual,
    .hero-visual {
        margin: 20px 0;
    }
    
    .article-hero-svg,
    .hero-svg {
        max-width: 280px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .nav-toggle,
    .social-links,
    .share-buttons,
    .newsletter,
    .newsletter-cta {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    img, svg {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .article-page,
    .legal-page {
        padding: 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Accessibility Improvements */
.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 */
*:focus {
    outline: 2px solid #4A90E2;
    outline-offset: 2px;
}

button:focus,
.btn:focus {
    outline: 2px solid #4A90E2;
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero {
        background: #000;
        color: #fff;
    }
    
    .testimonials {
        background: #000;
        color: #fff;
    }
    
    .newsletter {
        background: #000;
        color: #fff;
    }
}

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