/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f7fafc;
}

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

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

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

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

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

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-accept-all {
    background: #38a169;
    color: white;
}

.btn-accept-all:hover {
    background: #2f855a;
}

.btn-necessary {
    background: #e2e8f0;
    color: #2d3748;
}

.btn-necessary:hover {
    background: #cbd5e0;
}

.btn-settings {
    background: #718096;
    color: white;
}

.btn-settings:hover {
    background: #4a5568;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #2d3748;
    text-decoration: none;
}

.nav-logo i {
    color: #38a169;
}

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

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover {
    color: #38a169;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2d3748;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #38a169;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(56, 161, 105, 0.3);
}

.hero-btn:hover {
    background: #2f855a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.4);
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2d3748;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

section h2 i {
    color: #38a169;
}

/* Services Overview */
.services-overview {
    background: white;
}

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

.service-card {
    background: #f7fafc;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #38a169;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 3rem;
    color: #38a169;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
}

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

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

.about-text h2 {
    text-align: left;
    justify-content: flex-start;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature i {
    color: #38a169;
    font-size: 1.2rem;
}

.about-visual svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

/* Target Groups */
.target-groups {
    background: white;
}

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

.group-card {
    background: #f7fafc;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 5px solid #38a169;
}

.group-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.group-card i {
    font-size: 2.5rem;
    color: #38a169;
    margin-bottom: 20px;
}

.group-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.group-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Mission */
.mission {
    background: #f7fafc;
    color: #4a5568;
}

.mission h2 {
    color: #2d3748;
}

.mission h2 i {
    color: #38a169;
}

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

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-top: 20px;
}

/* Reviews */
.reviews {
    background: #edf2f7;
}

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

.review-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

.review-card::before {
    content: '"';
    font-size: 4rem;
    color: #e2e8f0;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    justify-content: center;
}

.stars i {
    color: #f6ad55;
}

.review-card p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-weight: 600;
    color: #2d3748;
}

.reviewer i {
    color: #38a169;
    font-size: 1.5rem;
}

/* Contact Info */
.contact-info {
    background: white;
}

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

.contact-item {
    text-align: center;
    padding: 30px;
    background: #f7fafc;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.contact-item i {
    font-size: 3rem;
    color: #38a169;
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.6;
}

.contact-item a {
    color: #38a169;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h3 i {
    color: #38a169;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #38a169;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #4a5568;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #38a169;
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom .disclaimer {
    font-size: 0.9rem;
    color: #a0aec0;
    margin-top: 10px;
    font-style: italic;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d3748;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.btn {
    background: #38a169;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn:hover {
    background: #2f855a;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    section h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text h2 {
        text-align: center;
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid,
    .groups-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .service-card,
    .group-card {
        padding: 30px 20px;
    }
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, #2d3748, #4a5568);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 70px;
}

/* Thank you page styles */
.thank-you-section {
    padding: 150px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
}

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

.thank-you-icon {
    font-size: 4rem;
    color: #38a169;
    margin-bottom: 30px;
}

.thank-you-section h1 {
    font-size: 3rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 50px;
    line-height: 1.6;
}

.thank-you-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.info-item i {
    color: #38a169;
    font-size: 1.5rem;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 8px;
}

.info-item p {
    color: #4a5568;
    margin: 0;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn-secondary:hover {
    background: #4a5568;
}

.additional-info {
    padding: 80px 0;
    background: white;
}

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

.info-card {
    text-align: center;
    padding: 40px 20px;
    background: #f7fafc;
    border-radius: 10px;
}

.info-card i {
    font-size: 2.5rem;
    color: #38a169;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.info-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Contact page styles */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form {
    background: #f7fafc;
    padding: 40px;
    border-radius: 10px;
}

.contact-info-section {
    position: sticky;
    top: 90px;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item i {
    color: #38a169;
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 8px;
}

.appointment-info,
.languages-info {
    background: #f7fafc;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.languages-info ul {
    list-style: none;
    margin-top: 15px;
}

.languages-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.languages-info li i {
    color: #38a169;
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

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

.checkmark {
    width: 18px;
    height: 18px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input:checked + .checkmark {
    background: #38a169;
    border-color: #38a169;
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 3px;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Map section */
.map-section {
    padding: 80px 0;
    background: #edf2f7;
}

.map-placeholder {
    position: relative;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-placeholder svg {
    width: 100%;
    height: 400px;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.map-overlay p {
    margin-bottom: 15px;
    color: #4a5568;
}

/* Newsletter section */
.newsletter-section {
    background: #2d3748;
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

.newsletter-section h2 {
    color: white;
}

.newsletter-section h2 i {
    color: #38a169;
}

.newsletter-form {
    margin-top: 30px;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-input-group input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-input-group button {
    padding: 15px 25px;
    white-space: nowrap;
}

/* About page styles */
.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.about-intro h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 30px;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.team-section {
    margin-bottom: 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-icon {
    font-size: 3rem;
    color: #38a169;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.team-member p {
    color: #4a5568;
    line-height: 1.6;
}

.experience-section {
    background: #f7fafc;
    padding: 60px;
    border-radius: 15px;
    margin-bottom: 80px;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-item i {
    font-size: 2.5rem;
    color: #38a169;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #4a5568;
}

.experience-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    text-align: center;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.mission,
.vision {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mission h2,
.vision h2 {
    text-align: left;
    justify-content: flex-start;
    margin-bottom: 20px;
    font-size: 2rem;
}

.mission p,
.vision p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
}

.values-section {
    margin-bottom: 80px;
}

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

.value-card {
    background: #f7fafc;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-card i {
    font-size: 2.5rem;
    color: #38a169;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    color: #2d3748;
    margin: 40px 0 20px;
    border-bottom: 2px solid #38a169;
    padding-bottom: 10px;
}

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

.legal-content p {
    margin-bottom: 15px;
    color: #4a5568;
}

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

.legal-content li {
    margin-bottom: 8px;
    color: #4a5568;
}

/* Services page */
.process-section {
    background: #edf2f7;
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #38a169;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-content {
    margin-top: 15px;
}

.step h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.step p {
    color: #4a5568;
    line-height: 1.6;
}

.cta-section {
    background: #38a169;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn {
    background: white;
    color: #38a169;
}

.cta-section .btn:hover {
    background: #f7fafc;
    transform: translateY(-2px);
}

/* Article styles */
.article-cta {
    background: #f7fafc;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    border-left: 5px solid #38a169;
}

.article-cta h3 {
    color: #2d3748;
    margin-bottom: 15px;
}

.article-cta p {
    color: #4a5568;
    margin-bottom: 25px;
}

.example-box {
    background: #f7fafc;
    border-left: 5px solid #38a169;
    padding: 30px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.example-box h4 {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.example-box p {
    font-family: monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 10px;
}

/* Active navigation link */
.nav-menu a.active {
    color: #38a169;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-section {
        position: static;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-section h1 {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.page-content {
    padding: 60px 0;
    background: white;
}

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

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

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

.blog-card-header {
    background: #f7fafc;
    padding: 30px;
    text-align: center;
}

.blog-card-header i {
    font-size: 3rem;
    color: #38a169;
    margin-bottom: 20px;
}

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

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.blog-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card .btn {
    font-size: 14px;
    padding: 10px 20px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

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

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

.article-content p {
    margin-bottom: 20px;
    color: #4a5568;
}

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

.article-content li {
    margin-bottom: 10px;
    color: #4a5568;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #718096;
}