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

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

/* Button Styles */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1B5E20, #388E3C);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: #e0e0e0;
}

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

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

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B5E20;
    margin-bottom: 16px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2E7D32, #4CAF50);
    border-radius: 2px;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.95);
    color: white;
    z-index: 9999;
    padding: 20px;
    backdrop-filter: blur(10px);
    border-top: 3px solid #2E7D32;
}

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

.cookie-content h3 {
    color: #4CAF50;
    margin-bottom: 8px;
}

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

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

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

.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.cookie-category h4 {
    color: #1B5E20;
    margin-bottom: 8px;
}

.cookie-category p {
    color: #666;
    font-size: 0.9rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-left: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2E7D32;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(46, 125, 50, 0.1);
}

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

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

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

.nav-brand span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1B5E20;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #2E7D32;
}

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

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fdf9, #e8f7ea);
    position: relative;
    overflow: hidden;
}

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

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1B5E20;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

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

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,60 C300,120 900,0 1200,60 L1200,120 L0,120 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text h3 {
    font-size: 2.2rem;
    color: #1B5E20;
    margin-bottom: 24px;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.stat {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8fdf9, #e8f7ea);
    border-radius: 12px;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.stat h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2E7D32;
    margin-bottom: 8px;
}

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

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #2E7D32;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: #1B5E20;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fdf9, #e8f7ea);
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card.premium {
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    color: white;
    transform: scale(1.05);
}

.service-card.premium::before {
    content: 'POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: #FF5722;
    color: white;
    padding: 5px 35px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

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

.service-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.service-icon {
    margin-bottom: 24px;
}

.service-icon img {
    width: 80px;
    height: 80px;
}

.service-card .service-icon {
    font-size: 3rem;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #1B5E20;
    font-weight: 700;
}

.service-card.premium h3 {
    color: white;
}

.service-card p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-card.premium p {
    color: rgba(255, 255, 255, 0.9);
}

.service-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-card li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.service-card.premium li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2E7D32;
    font-weight: bold;
}

.service-card.premium li::before {
    color: #4CAF50;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4CAF50;
    margin-top: 20px;
}

/* Facilities Section */
.facilities {
    padding: 100px 0;
    background: white;
}

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

.facility-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.facility-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.facility-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px;
}

.facility-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.facilities-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.facility-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8fdf9, #e8f7ea);
    border-radius: 16px;
    border-left: 4px solid #2E7D32;
    transition: transform 0.3s ease;
}

.facility-item:hover {
    transform: translateX(10px);
}

.facility-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.facility-content h4 {
    color: #1B5E20;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.facility-content p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    color: white;
}

.testimonials .section-header h2 {
    color: white;
}

.testimonials .section-header h2::after {
    background: linear-gradient(90deg, #4CAF50, #66BB6A);
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 40px;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.stars {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

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

.testimonial-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #4CAF50;
}

/* Newsletter Section */
.newsletter {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fdf9, #e8f7ea);
}

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

.newsletter-text h2 {
    font-size: 2.5rem;
    color: #1B5E20;
    margin-bottom: 20px;
    font-weight: 700;
}

.newsletter-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.newsletter-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-features .feature {
    color: #2E7D32;
    font-weight: 500;
    padding: 8px 0;
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-group.checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-group.checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-group.checkbox input[type="checkbox"] {
    display: none;
}

.form-group.checkbox input[type="checkbox"]:checked + .checkmark {
    background: #2E7D32;
    border-color: #2E7D32;
}

.form-group.checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-group.checkbox a {
    color: #2E7D32;
    text-decoration: none;
}

.form-group.checkbox a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #1d3823, #0e2912);
    border-radius: 16px;
    border-left: 4px solid #2E7D32;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #fdfdfd;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: linear-gradient(135deg, #f8fdf9, #e8f7ea);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #4CAF50;
}

.footer-brand h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 12px;
    margin-top: 12px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-logo {
    height: 50px;
    width: 50px;
}

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

.social-links a {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4CAF50;
}

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

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

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

.footer-section a:hover {
    color: #4CAF50;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

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

.footer-flag {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chile-flag {
    height: 20px;
    width: 30px;
}

/* Thank You Page Styles */
.thank-you {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #f8fdf9, #e8f7ea);
    min-height: 80vh;
}

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

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

.thank-you h1 {
    font-size: 3rem;
    color: #1B5E20;
    margin-bottom: 20px;
    font-weight: 700;
}

.personalized-message {
    font-size: 1.3rem;
    color: #2E7D32;
    margin-bottom: 20px;
    font-weight: 600;
}

.main-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

.next-steps {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.next-steps h3 {
    color: #1B5E20;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

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

.step {
    text-align: center;
    padding: 25px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fdf9, #e8f7ea);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.step h4 {
    color: #1B5E20;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step p {
    color: #666;
    font-size: 0.95rem;
}

.newsletter-benefits {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    text-align: left;
}

.newsletter-benefits h3 {
    color: #1B5E20;
    margin-bottom: 25px;
    font-size: 1.8rem;
    text-align: center;
}

.newsletter-benefits ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.newsletter-benefits li {
    color: #2E7D32;
    font-weight: 500;
    padding: 10px 0;
}

.social-follow {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.social-follow h3 {
    color: #1B5E20;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.social-follow p {
    color: #666;
    margin-bottom: 25px;
}

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

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

.social-btn.facebook { background: #1877F2; color: white; }
.social-btn.instagram { background: #E4405F; color: white; }
.social-btn.twitter { background: #1DA1F2; color: white; }
.social-btn.youtube { background: #FF0000; color: white; }

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Blog Styles */
.blog-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fdf9, #e8f7ea);
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    color: #1B5E20;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 80px 0;
}

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

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

.blog-card-image {
    height: 250px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.blog-card-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.blog-card h3 {
    font-size: 1.5rem;
    color: #1B5E20;
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #2E7D32;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1B5E20;
}

/* Article Page Styles */
.article-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    color: white;
    text-align: center;
}

.article-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.article-meta {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.article-content h2 {
    color: #1B5E20;
    font-size: 2rem;
    margin: 40px 0 20px;
    font-weight: 600;
}

.article-content h3 {
    color: #2E7D32;
    font-size: 1.5rem;
    margin: 30px 0 15px;
    font-weight: 600;
}

.article-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.article-content ul, .article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.article-image {
    text-align: center;
    margin: 40px 0;
    padding: 60px;
    background: linear-gradient(135deg, #f8fdf9, #e8f7ea);
    border-radius: 12px;
    font-size: 4rem;
    color: #2E7D32;
}

.back-to-blog {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fdf9, #e8f7ea);
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 80px;
    background: white;
}

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

.legal-content h1 {
    color: #1B5E20;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.legal-content h2 {
    color: #2E7D32;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    font-weight: 600;
}

.legal-content h3 {
    color: #2E7D32;
    font-size: 1.4rem;
    margin: 30px 0 15px;
    font-weight: 600;
}

.legal-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.legal-content ul, .legal-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.last-updated {
    background: linear-gradient(135deg, #f8fdf9, #e8f7ea);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid #2E7D32;
}

.last-updated p {
    margin: 0;
    font-weight: 600;
    color: #2E7D32;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content,
    .about-content,
    .newsletter-content,
    .contact-content,
    .facilities-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.premium {
        transform: none;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-benefits ul {
        grid-template-columns: 1fr;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .article-hero h1 {
        font-size: 2.2rem;
    }
    
    .thank-you h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 10px;
        padding: 20px;
    }
    
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-buttons button {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}
