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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

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

a:hover {
    color: #2c5530;
}

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

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

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

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

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

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

.btn-outline {
    background-color: transparent;
    color: #4a7c59;
    border-color: #4a7c59;
}

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

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

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo h2 {
    color: #4a7c59;
    margin: 0;
    font-size: 1.5rem;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: #4a7c59;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #4a7c59;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

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

.cookie-banner.show {
    transform: translateY(0);
}
.cookie-content p{
    color: white
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
    padding: 4rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c5530;
}

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

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

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

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

/* Page Header */
.page-header {
    background-color: #4a7c59;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: #fff;
}

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

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: #f8fffe;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.feature-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* About Page Styles */
.about-content,
.services-hero,
.testimonials-hero,
.blog-hero {
    padding: 4rem 0;
}

.about-grid,
.services-grid,
.testimonials-grid,
.blog-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.values {
    padding: 4rem 0;
    background-color: #f8fffe;
}

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

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

.value-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
    text-align: center;
}

.value-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

/* Course Information */
.course-info {
    padding: 4rem 0;
}

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

.course-detail {
    background-color: #f8fffe;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
}

.course-detail h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.course-detail ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.course-detail li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e8f5e8;
}

.course-detail li:last-child {
    border-bottom: none;
}

.course-detail li::before {
    content: '✓';
    color: #4a7c59;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Services Page */
.course-features {
    padding: 4rem 0;
    background-color: #f8fffe;
}

.learning-modules {
    padding: 4rem 0;
}

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

.module-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.module-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.module-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.module-card li {
    padding: 0.5rem 0;
    color: #555;
}

.module-card li::before {
    content: '•';
    color: #4a7c59;
    font-weight: bold;
    margin-right: 0.5rem;
}

.module-duration {
    background-color: #4a7c59;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 1rem;
}

/* Testimonials Page */
.testimonials-section {
    padding: 4rem 0;
}

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

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.star {
    color: #f8b500;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.testimonial-author strong {
    color: #2c5530;
    display: block;
    margin-bottom: 0.25rem;
}

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

.success-stories {
    padding: 4rem 0;
    background-color: #f8fffe;
}

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

.story-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
    text-align: center;
}

.story-card h3 {
    color: #4a7c59;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.story-author {
    color: #777;
    font-style: italic;
    margin-top: 1rem;
}

/* Blog Pages */
.blog-articles {
    padding: 4rem 0;
}

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

.article-card {
    background-color: white;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.article-card {
    padding: 2rem;
}

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

.article-date {
    color: #777;
}

.article-category {
    background-color: #4a7c59;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

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

.article-card h3 a {
    color: #2c5530;
    text-decoration: none;
}

.article-card h3 a:hover {
    color: #4a7c59;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e8f5e8;
}

.read-time {
    color: #777;
    font-size: 0.9rem;
}

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

/* Blog Article Pages */
.blog-article {
    padding: 2rem 0 4rem;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 20px;
}

.breadcrumb {
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #4a7c59;
    font-weight: 500;
}

.article-intro {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

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

.article-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 2rem auto;
    display: block;
    border-radius: 12px;
}

.article-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5530;
}

.article-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #4a7c59;
}

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

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

.info-box,
.warning-box {
    background-color: #f8fffe;
    border: 1px solid #e8f5e8;
    border-left: 4px solid #4a7c59;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.warning-box {
    background-color: #fdf6e3;
    border-left-color: #f8b500;
    border-color: #f4e7cc;
}

.article-conclusion {
    background-color: #f8fffe;
    border: 1px solid #e8f5e8;
    padding: 2rem;
    margin: 3rem 0 2rem;
    border-radius: 12px;
}

.article-footer {
    border-top: 1px solid #e8f5e8;
    padding-top: 2rem;
    margin-top: 3rem;
}

.share-buttons,
.related-articles {
    margin-bottom: 2rem;
}

.related-articles ul {
    list-style: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 0.5rem;
}

.related-articles a {
    color: #4a7c59;
    font-weight: 500;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

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

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-form-section {
    background-color: #f8fffe;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
}

.contact-svg {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 2rem;
}

.form-container h2 {
    margin-bottom: 1rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    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 {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

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

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.faq-section {
    padding: 4rem 0;
    background-color: #f8fffe;
}

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

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
}

.faq-item h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

/* Newsletter Signup */
.newsletter-signup {
    background-color: #4a7c59;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

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

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

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

.newsletter-form button {
    white-space: nowrap;
}

/* Legal Pages */
.legal-content {
    padding: 2rem 0 4rem;
    background-color: #fff;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5530;
    border-bottom: 2px solid #e8f5e8;
    padding-bottom: 0.5rem;
}

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #4a7c59;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

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

.contact-info {
    background-color: #f8fffe;
    border: 1px solid #e8f5e8;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.last-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e8f5e8;
    font-style: italic;
    color: #777;
}

/* Cookie Policy Specific */
.cookie-category {
    margin: 2rem 0;
}

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

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

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

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

.cookie-controls {
    background-color: #f8fffe;
    border: 1px solid #e8f5e8;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 12px;
}

.cookie-preference {
    margin: 1.5rem 0;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #e8f5e8;
}

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

.cookie-option label {
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.warning-list ul,
.positive-list ul {
    margin: 1rem 0;
}

.warning-list {
    background-color: #fdf6e3;
    border: 1px solid #f4e7cc;
    border-left: 4px solid #f8b500;
    padding: 1.5rem;
    border-radius: 8px;
}

.positive-list {
    background-color: #f0f8f0;
    border: 1px solid #d4e6d4;
    border-left: 4px solid #4a7c59;
    padding: 1.5rem;
    border-radius: 8px;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 0;
    text-align: center;
    background-color: #f8fffe;
}

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

.thanks-icon {
    color: #4a7c59;
    margin-bottom: 2rem;
}

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

.next-steps {
    margin: 3rem 0;
}

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

.step {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
}

.step-number {
    background-color: #4a7c59;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.while-waiting {
    padding: 4rem 0;
}

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

.suggestion-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
    text-align: center;
}

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

.suggestion-link:hover {
    text-decoration: underline;
}

.quick-faq {
    padding: 4rem 0;
    background-color: #f8fffe;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.contact-reminder {
    padding: 4rem 0;
}

.contact-info-box {
    background-color: #4a7c59;
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-box h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    gap: 1rem;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #2c5530;
    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 p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .about-grid,
    .services-grid,
    .testimonials-grid,
    .blog-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        order: 2;
        text-align: center;
    }
    
    .hero-image {
        order: 1;
    }
    
    .contact-grid,
    .course-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid,
    .values-grid,
    .modules-grid,
    .testimonials-cards,
    .articles-grid,
    .stories-grid,
    .steps-grid,
    .suggestions-grid {
        grid-template-columns: 1fr;
    }

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

    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .action-buttons,
    .cookie-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        padding: 2rem 0;
    }

    .page-header {
        padding: 2rem 0;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

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

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .feature-card,
    .value-card,
    .module-card,
    .testimonial-card,
    .article-card {
        padding: 1.5rem;
    }

    .cookie-buttons .btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .newsletter-signup,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container {
        max-width: none;
    }
}
