/* MediaBowlm - Polish Gardening Portal Styles */

/* CSS 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: #f8faf8;
}

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

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

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

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: #2d5a3d;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #4a7c59, #5a8a68);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3a6b49, #4a7c59);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #4a7c59;
    padding: 12px 24px;
    border: 2px solid #4a7c59;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

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

.btn-link {
    background: none;
    border: none;
    color: #4a7c59;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 8px 16px;
}

.btn-link:hover {
    color: #2d5a3d;
}

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

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a3d;
    text-decoration: none;
}

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

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

.nav-menu a {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #f0f8f4;
    color: #2d5a3d;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2d5a3d;
    transition: 0.3s;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f8f4, #e8f5ea);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

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

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

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

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

/* About Section */
.about-section {
    background: white;
}

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

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature img {
    width: 40px;
    height: 40px;
    opacity: 0.8;
}

.feature h4 {
    color: #2d5a3d;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    margin: 0;
}

/* Services Section */
.services-section {
    background: #f8faf8;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

/* Blog Section */
.blog-preview-section {
    background: white;
}

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

.blog-card {
    background: #f8faf8;
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.blog-card.featured {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.blog-icon img {
    width: 50px;
    height: 50px;
    opacity: 0.8;
}

.blog-card h3,
.blog-card h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.blog-card p {
    color: #666;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #888;
}

.read-more {
    color: #4a7c59;
    font-weight: 500;
    text-decoration: none;
}

.read-more:hover {
    color: #2d5a3d;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #4a7c59, #5a8a68);
    color: white;
}

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

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

.newsletter-text p {
    color: #e8f5ea;
    font-size: 1.1rem;
}

.newsletter-form {
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

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

.newsletter-note {
    font-size: 0.9rem;
    color: #e8f5ea;
    margin: 0;
}

/* Reviews Section */
.reviews-section {
    background: #f8faf8;
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.reviewer strong {
    color: #2d5a3d;
}

.reviewer span {
    color: #888;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: white;
}

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

.contact-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8faf8;
    border-radius: 12px;
}

.contact-item h3 {
    color: #2d5a3d;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #2d5a3d;
    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: #e8f5ea;
}

.footer-section a:hover {
    color: white;
}

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

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
}

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

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

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

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

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

.cookie-option {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #2d5a3d;
    margin-bottom: 0.5rem;
}

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

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f0f8f4, #e8f5ea);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Blog Page Styles */
.blog-section {
    padding: 4rem 0;
}

.blog-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
    color: #2d5a3d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.category-list a:hover {
    background: #f0f8f4;
}

.category-list span {
    color: #888;
    font-size: 0.9rem;
}

.popular-posts .popular-post {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.popular-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.popular-post img {
    width: 40px;
    height: 40px;
    opacity: 0.8;
}

.popular-post h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.popular-post .date {
    font-size: 0.8rem;
    color: #888;
}

.newsletter-widget {
    background: linear-gradient(135deg, #4a7c59, #5a8a68);
    color: white;
}

.newsletter-widget h3 {
    color: white;
}

.newsletter-widget p {
    color: #e8f5ea;
}

.newsletter-widget form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-widget input {
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
}

/* Article Page Styles */
.article-page {
    padding: 2rem 0;
}

.article-page .container {
    display: grid;
}

.article-header {
    margin-bottom: 2rem;
}

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

.breadcrumb a {
    color: #4a7c59;
}

.article-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.article-icon img {
    width: 80px;
    height: 80px;
    opacity: 0.8;
}

.article-header h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.article-meta {
    text-align: center;
    color: #888;
    margin-bottom: 2rem;
}

.article-meta span {
    margin: 0 1rem;
}

.article-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-intro {
    font-size: 1.1rem;
    color: #555;
    background: #f8faf8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #4a7c59;
}

.article-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #2d5a3d;
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: #4a7c59;
}

.article-content h4 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    color: #4a7c59;
}

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

.article-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.article-cta {
    background: linear-gradient(135deg, #4a7c59, #5a8a68);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

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

.article-cta p {
    color: #e8f5ea;
    margin-bottom: 1.5rem;
}

.related-articles {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.related-post {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.related-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.related-post img {
    width: 50px;
    height: 50px;
    opacity: 0.8;
}

.related-post h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.related-post .date {
    font-size: 0.8rem;
    color: #888;
}

.article-toc {
    background: #f8faf8;
    padding: 1.5rem;
    border-radius: 12px;
}

.article-toc h3 {
    color: #2d5a3d;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.article-toc ul {
    list-style: none;
    padding: 0;
}

.article-toc li {
    margin-bottom: 0.5rem;
}

.article-toc a {
    color: #4a7c59;
    font-size: 0.9rem;
    padding: 0.25rem 0;
    display: block;
}

.article-toc a:hover {
    color: #2d5a3d;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d5a3d;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"],
.checkbox-label input[type="radio"] {
    margin: 0;
    width: auto;
    height: auto;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-icon {
    margin-bottom: 1rem;
}

.contact-icon img {
    width: 50px;
    height: 50px;
    opacity: 0.8;
}

.contact-info-card h3 {
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.faq-section {
    margin-top: 3rem;
}

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

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #2d5a3d;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Newsletter Page Styles */
.newsletter-hero {
    background: linear-gradient(135deg, #f0f8f4, #e8f5ea);
    padding: 4rem 0;
}

.newsletter-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item img {
    width: 40px;
    height: 40px;
    opacity: 0.8;
}

.benefit-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2d5a3d;
}

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

.newsletter-form-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.form-note {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
}

.newsletter-info {
    background: white;
    padding: 4rem 0;
}

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

.info-card {
    background: #f8faf8;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.info-icon {
    margin-bottom: 1rem;
}

.info-icon img {
    width: 60px;
    height: 60px;
    opacity: 0.8;
}

.info-card h3 {
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    margin-bottom: 0.5rem;
    color: #666;
}

.newsletter-testimonials {
    background: #f8faf8;
    padding: 4rem 0;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.newsletter-cta {
    background: linear-gradient(135deg, #4a7c59, #5a8a68);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #e8f5ea;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Thanks Page Styles */
.thanks-section {
    padding: 4rem 0;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon img {
    width: 100px;
    height: 100px;
    opacity: 0.8;
}

.thanks-message {
    margin-bottom: 2rem;
}

.thanks-details {
    background: #f8faf8;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.thanks-details ul {
    list-style: none;
    padding: 0;
}

.thanks-details li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.recommended-articles {
    margin-bottom: 3rem;
}

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

.article-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

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

.article-card .article-icon img {
    width: 40px;
    height: 40px;
    opacity: 0.8;
}

.article-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

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

.newsletter-prompt {
    margin-bottom: 2rem;
}

.newsletter-card {
    background: linear-gradient(135deg, #4a7c59, #5a8a68);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.newsletter-icon img {
    width: 60px;
    height: 60px;
    opacity: 0.8;
}

.newsletter-text h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: #e8f5ea;
    margin: 0;
}

.contact-reminder h3 {
    margin-bottom: 1rem;
}

.contact-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-option img {
    width: 40px;
    height: 40px;
    opacity: 0.8;
}

/* Legal Pages */
.legal-page {
    padding: 2rem 0;
    background: white;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f8f4;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: #2d5a3d;
    margin-bottom: 0.5rem;
}

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

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

.legal-content h2 {
    font-size: 1.5rem;
    color: #2d5a3d;
    margin: 2rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f8f4;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: #4a7c59;
    margin: 1.5rem 0 1rem;
}

.legal-content h4 {
    font-size: 1.1rem;
    color: #4a7c59;
    margin: 1rem 0 0.5rem;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-content strong {
    color: #2d5a3d;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f8f4;
    font-style: italic;
    color: #666;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: #f8faf8;
    border-radius: 8px;
    overflow: hidden;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
    background: #4a7c59;
    color: white;
    font-weight: 500;
}

.cookies-table tr:last-child td {
    border-bottom: none;
}

.cookie-management {
    margin: 1rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .about-content,
    .newsletter-content,
    .contact-grid,
    .newsletter-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-section .container,
    .article-page .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .blog-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .cookie-modal-content {
        padding: 1rem;
        margin: 1rem;
    }
    
    .newsletter-form-card {
        padding: 1.5rem;
    }
    
    .legal-content {
        padding: 0 1rem;
    }
}

/* Print Styles */
@media print {
    .cookie-banner,
    .cookie-modal,
    header,
    footer,
    .newsletter-section,
    .social-links,
    .btn-primary,
    .btn-secondary {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }
    
    .article-content,
    .legal-content {
        box-shadow: none;
        padding: 0;
    }
}

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

/* Focus States */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #4a7c59;
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero-banner {
        background: #ffffff;
    }
    
    .newsletter-section,
    .newsletter-cta {
        background: #000000;
        color: #ffffff;
    }
}
