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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 0.5em;
    color: #2c3e50;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1em;
}

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

a:hover {
    color: #2980b9;
}

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

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
    color: white;
}

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

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

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

.btn-outline:hover {
    background-color: #3498db;
    color: white;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

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

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-menu a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -2;
}

.hero-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    z-index: 1;
    max-width: 600px;
}

.hero-content h1 {
    color: white;
    margin-bottom: 1rem;
    font-size: 3.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Sections */
.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: #f8f9fa;
}

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

.section-icon {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

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

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

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

.content-icon {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.content-item h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

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

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.service-card li:last-child {
    border-bottom: none;
}

.service-card li:before {
    content: "✓";
    color: #27ae60;
    margin-right: 0.5rem;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.blog-icon {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.blog-card h3 {
    margin-bottom: 1rem;
}

.blog-card h3 a {
    color: #2c3e50;
}

.blog-card h3 a:hover {
    color: #3498db;
}

.read-more {
    color: #3498db;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-stars {
    color: #f39c12;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.review-author strong {
    color: #2c3e50;
}

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

/* Newsletter */
.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    margin-top: 2rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.form-group input[type="email"] {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    max-width: 300px;
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: #3498db;
}

.form-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.form-checkbox input[type="checkbox"] {
    margin-right: 0.5rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    height: 24px;
    width: auto;
    margin-top: 0.2rem;
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    margin-bottom: 1rem;
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
}

.social-links img {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.1);
}

.contact-form h3 {
    margin-bottom: 2rem;
}

.contact-form .form-group {
    flex-direction: column;
    align-items: stretch;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

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

.contact-form .form-checkbox {
    justify-content: flex-start;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover,
.footer-section a.active {
    color: #3498db;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 1rem;
    z-index: 1000;
    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: 2rem;
}

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

.cookie-buttons .btn {
    white-space: nowrap;
}

/* Thank You Page */
.thank-you-section {
    padding: 8rem 0;
    text-align: center;
}

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

.thank-you-icon {
    height: 80px;
    width: auto;
    margin-bottom: 2rem;
}

.thank-you-info {
    margin: 2rem 0;
    text-align: left;
}

.thank-you-info h3 {
    margin-bottom: 1rem;
}

.thank-you-info ul {
    list-style: none;
    padding-left: 0;
}

.thank-you-info li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.thank-you-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Blog Pages */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

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

.page-header-icon {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.blog-section {
    padding: 5rem 0;
}

.blog-articles {
    display: grid;
    gap: 3rem;
}

.blog-article-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.article-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.article-icon {
    height: 40px;
    width: auto;
}

.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.article-category {
    background-color: #3498db;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
}

.blog-article-card h2 {
    margin-bottom: 1rem;
}

.blog-article-card h2 a {
    color: #2c3e50;
}

.blog-article-card h2 a:hover {
    color: #3498db;
}

.newsletter-section {
    padding: 4rem 0;
}

/* Article Pages */
.article-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 0 4rem;
}

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

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: white;
}

.article-header-icon {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.article-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.article-header .article-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.article-content {
    padding: 5rem 0;
}

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

.article-intro {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.intro-icon {
    height: 40px;
    width: auto;
    margin-top: 0.5rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.article-section h3 {
    margin-bottom: 1rem;
    color: #34495e;
}

.content-highlight {
    background-color: #e8f4f8;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #3498db;
}

.content-highlight h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.content-highlight ul {
    margin-left: 1rem;
}

.content-highlight li {
    margin-bottom: 0.5rem;
}

.monthly-calendar {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.monthly-calendar h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.tip-box {
    background-color: #fff3cd;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #ffc107;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tip-icon {
    height: 30px;
    width: auto;
    margin-top: 0.5rem;
}

.tip-box h3 {
    margin-bottom: 0.5rem;
    color: #856404;
}

.tip-box p {
    margin: 0;
    color: #856404;
}

.moon-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.phase-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.phase-card p {
    margin-bottom: 0.5rem;
}

.influence-areas {
    margin: 2rem 0;
}

.influence-areas h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.myth-busting {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.myth-busting h3 {
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.moon-gardening {
    margin: 2rem 0;
}

.gardening-phase {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.gardening-phase h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.gardening-phase ul {
    margin-left: 1rem;
}

.plant-categories {
    margin: 2rem 0;
}

.plant-categories h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.seasonal-planning {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.seasonal-planning h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.seasonal-planning ul {
    margin-left: 1rem;
}

.faq-section {
    margin: 2rem 0;
}

.faq-section h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.daily-calendar {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.daily-calendar h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.warning-box {
    background-color: #f8d7da;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #dc3545;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.warning-icon {
    height: 30px;
    width: auto;
    margin-top: 0.5rem;
}

.warning-box h3 {
    margin-bottom: 0.5rem;
    color: #721c24;
}

.warning-box ul {
    margin-left: 1rem;
}

.warning-box li {
    color: #721c24;
}

.article-cta {
    background-color: #3498db;
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin: 3rem 0;
}

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

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

.related-articles {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.related-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.related-icon {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.related-card h3 {
    margin-bottom: 1rem;
}

.related-card h3 a {
    color: #2c3e50;
}

.related-card h3 a:hover {
    color: #3498db;
}

/* Legal Pages */
.legal-content {
    padding: 8rem 0 4rem;
}

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

.legal-header h1 {
    margin-bottom: 1rem;
}

.legal-header p {
    color: #666;
}

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

.legal-text h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

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

.legal-text address {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
    margin: 1.5rem 0;
    font-style: normal;
    line-height: 1.6;
}

.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table tr:hover {
    background-color: #f8f9fa;
}

.cookie-settings {
    background-color: #e8f4f8;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    text-align: center;
}

.cookie-settings h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cookie-settings p {
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 200px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input[type="email"] {
        max-width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn {
        width: 200px;
    }
    
    .article-header .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .intro-icon {
        margin-top: 0;
    }
    
    .tip-box {
        flex-direction: column;
        text-align: center;
    }
    
    .tip-icon {
        margin-top: 0;
    }
    
    .warning-box {
        flex-direction: column;
        text-align: center;
    }
    
    .warning-icon {
        margin-top: 0;
    }
    
    .moon-phases {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .content-item,
    .service-card,
    .blog-card,
    .review-card {
        padding: 1.5rem;
    }
    
    .article-header {
        padding: 6rem 0 3rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-content {
        padding: 3rem 0;
    }
    
    .article-intro,
    .content-highlight,
    .monthly-calendar,
    .tip-box,
    .warning-box,
    .seasonal-planning,
    .daily-calendar {
        padding: 1.5rem;
    }
    
    .article-cta {
        padding: 2rem;
    }
    
    .legal-content {
        padding: 6rem 0 3rem;
    }
    
    .legal-text {
        font-size: 0.9rem;
    }
    
    .cookie-table {
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .hero-buttons,
    .article-cta,
    .related-articles,
    .cookie-settings {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        color: #2c3e50;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .article-header {
        padding: 2rem 0;
    }
    
    .article-header h1 {
        color: #2c3e50;
    }
    
    .article-content {
        padding: 2rem 0;
    }
    
    .legal-content {
        padding: 2rem 0;
    }
}
