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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

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

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

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

.nav-link {
    font-weight: 500;
    color: #333;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2E7D32;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2E7D32;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.contact-phone {
    font-weight: 600;
    color: #2E7D32;
    border: 2px solid #2E7D32;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-phone:hover {
    background-color: #2E7D32;
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2E7D32;
    color: white;
}

.btn-primary:hover {
    background-color: #1B5E20;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #2E7D32;
    border: 2px solid #2E7D32;
}

.btn-secondary:hover {
    background-color: #2E7D32;
    color: white;
}

.btn-tertiary {
    background-color: #f5f5f5;
    color: #333;
}

.btn-tertiary:hover {
    background-color: #e0e0e0;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #E8F5E8 0%, #F1F8E9 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    min-height: 60vh;
}

.hero-text {
    flex: 1;
}

.hero-title {
    color: #1B5E20;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    text-align: center;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.section-title {
    color: #1B5E20;
    margin-bottom: 1rem;
}

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

/* Company Info Section */
.company-info {
    background-color: #fafafa;
}

.company-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.company-text {
    flex: 2;
}

.company-text h3 {
    color: #1B5E20;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.company-text h3:first-child {
    margin-top: 0;
}

.company-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E7D32;
    display: block;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

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

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

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

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.service-title {
    color: #1B5E20;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
}

/* Advantages Section */
.advantages {
    background-color: #fafafa;
}

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

.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.advantage-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.advantage-item h4 {
    color: #1B5E20;
    margin-bottom: 0.5rem;
}

.advantage-item p {
    margin: 0;
    font-size: 0.9rem;
}

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

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

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon {
    width: 20px;
    height: 20px;
    color: #FFD700;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #444;
}

.testimonial-author strong {
    color: #1B5E20;
    display: block;
}

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

/* Subscription Section */
.subscription {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    color: white;
}

.subscription-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.subscription-text {
    flex: 1;
}

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

.subscription-text p {
    color: rgba(255,255,255,0.9);
}

.subscription-form {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.subscription-form input {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    background: rgba(255,255,255,0.9);
}

.subscription-form input::placeholder {
    color: #999;
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-label a {
    color: white;
    text-decoration: underline;
}

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

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: #2E7D32;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-title {
    color: #1B5E20;
    margin: 0.5rem 0 1rem;
    font-size: 1.3rem;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: #2E7D32;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.blog-link:hover {
    border-bottom-color: #2E7D32;
}

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

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

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

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

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

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

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

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

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    font-family: inherit;
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-info address {
    font-style: normal;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.5rem;
}

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

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

.footer-legal {
    display: flex;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #021e04;
    color: white;
    padding: 1rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    margin: 0;
    color: rgba(255,255,255,0.9);
}

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

.cookie-buttons .btn {
    padding: 0.5rem 1rem;
    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: 1002;
}

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

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

.cookie-modal-content h3 {
    color: #1B5E20;
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.2rem;
}

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

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

/* Page-specific Styles */

/* About Page */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #E8F5E8 0%, #F1F8E9 100%);
    text-align: center;
}

.page-title {
    color: #1B5E20;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.about-story {
    background-color: #fafafa;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.story-text {
    flex: 2;
}

.story-text h2 {
    color: #1B5E20;
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
    text-align: center;
}

.story-img {
    max-width: 100%;
    height: auto;
}

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

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

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

.mission-card h3 {
    color: #1B5E20;
    margin-bottom: 1rem;
}

.team-expertise {
    background-color: #fafafa;
}

.expertise-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.expertise-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-large {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stat-large .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2E7D32;
    display: block;
}

.stat-large .stat-label {
    color: #666;
    font-weight: 500;
    font-size: 1.1rem;
}

.expertise-text {
    flex: 2;
}

.expertise-text h3 {
    color: #1B5E20;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.expertise-text h3:first-child {
    margin-top: 0;
}

.certification-list,
.impact-list {
    list-style: none;
    margin-left: 0;
}

.certification-list li,
.impact-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.certification-list li::before,
.impact-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2E7D32;
    font-weight: bold;
}

.commitment {
    background: white;
}

.commitment-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.commitment-text {
    flex: 2;
}

.commitment-text h2 {
    color: #1B5E20;
    margin-bottom: 1.5rem;
}

.commitment-text h3 {
    color: #1B5E20;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.commitment-stats {
    flex: 1;
}

.commitment-stats h3 {
    color: #1B5E20;
    margin-bottom: 1.5rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.impact-item {
    text-align: center;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 10px;
}

.impact-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E7D32;
    display: block;
}

.impact-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-about {
    background: linear-gradient(135deg, #2E7D32 0%, #021e04 100%);
    color: white;
    text-align: center;
}

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

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

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

/* Thanks Page */
.thanks-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #E8F5E8 0%, #F1F8E9 100%);
    min-height: 80vh;
}

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

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

.success-icon {
    width: 80px;
    height: 80px;
    color: #2E7D32;
}

.thanks-title {
    color: #1B5E20;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.thanks-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-info h2 {
    color: #1B5E20;
    text-align: center;
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: #2E7D32;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-text h3 {
    color: #1B5E20;
    margin-bottom: 0.5rem;
}

.step-text p {
    margin: 0;
    color: #666;
}

.thanks-contact {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.thanks-contact h2 {
    color: #1B5E20;
    text-align: center;
    margin-bottom: 1rem;
}

.thanks-contact p {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #f5f5f5;
    border-radius: 8px;
}

.contact-item strong {
    color: #1B5E20;
    min-width: 60px;
}

.contact-item a {
    color: #2E7D32;
    font-weight: 500;
}

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

.thanks-resources {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.thanks-resources h3 {
    color: #1B5E20;
    text-align: center;
    margin-bottom: 1rem;
}

.thanks-resources p {
    text-align: center;
    margin-bottom: 2rem;
}

.resource-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 10px;
    color: #2E7D32;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: left;
}

.resource-link:hover {
    background: #e8f5e8;
    transform: translateY(-2px);
}

.resource-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 0 4rem;
    background: #fafafa;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.legal-content h1 {
    color: #1B5E20;
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.legal-content h2 {
    color: #1B5E20;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-content h3 {
    color: #2E7D32;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.legal-content h4 {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

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

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

.legal-content strong {
    color: #333;
}

.contact-details {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookie-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #333;
}

.cookie-table td {
    color: #666;
}

#openCookieSettings {
    margin-top: 2rem;
}

/* Article Pages */
.article-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #E8F5E8 0%, #F1F8E9 100%);
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.back-link {
    color: #2E7D32;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-link:hover {
    color: #1B5E20;
}

.article-date {
    color: #666;
    font-size: 0.9rem;
}

.article-title {
    color: #1B5E20;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.article-hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 auto;
    display: block;
}

.article-content {
    padding: 4rem 0;
    background: white;
}

.article-content .container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

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

.article-body h2 {
    color: #1B5E20;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body h3 {
    color: #2E7D32;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-body p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #444;
}

.article-body ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.75rem;
    color: #666;
    line-height: 1.6;
}

.article-cta {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

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

.article-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.article-sidebar {
    flex: 1;
    position: sticky;
    top: 100px;
}

.sidebar-section {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.sidebar-section h4 {
    color: #1B5E20;
    margin-bottom: 1rem;
}

.fact-list {
    list-style: none;
    padding: 0;
}

.fact-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
    font-size: 0.9rem;
}

.fact-list li:last-child {
    border-bottom: none;
}

.related-article {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #2E7D32;
    font-weight: 500;
    transition: all 0.3s ease;
}

.related-article:hover {
    color: #1B5E20;
    background: rgba(46, 125, 50, 0.05);
    padding: 0.5rem;
    border-radius: 8px;
    margin: -0.5rem;
}

.related-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 8px;
}

.sidebar-section .btn {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

.sidebar-section p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .company-grid,
    .story-content,
    .expertise-content,
    .commitment-content,
    .subscription-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .article-content .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .article-sidebar {
        position: static;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .resource-links {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .next-steps {
        gap: 1rem;
    }
    
    .contact-info {
        gap: 0.75rem;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-hero {
        padding: 6rem 0 3rem;
    }
    
    .legal-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .page-title,
    .article-title {
        font-size: 1.8rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card,
    .mission-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .subscription-form {
        padding: 1.5rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .btn,
    .social-links,
    .newsletter-form {
        display: none !important;
    }
    
    .article-content,
    .legal-content {
        box-shadow: none;
        padding: 0;
    }
    
    a {
        color: #333 !important;
        text-decoration: underline;
    }
    
    h1, h2, h3, h4 {
        page-break-after: avoid;
    }
    
    p, li {
        page-break-inside: avoid;
    }
}

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

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero,
    .page-hero,
    .article-hero {
        background: #f0f0f0;
    }
    
    .subscription,
    .cta-about {
        background: #000;
        color: #fff;
    }
    
    .btn-primary {
        background: #000;
        border: 2px solid #000;
    }
    
    .btn-secondary {
        border: 2px solid #000;
        color: #000;
    }
}

/* Focus Styles for Better Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid #2E7D32;
    outline-offset: 2px;
}

.nav-link:focus::after {
    width: 100%;
}

/* Screen Reader Only Content */
.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;
}
