/* Base styles */
:root {
    --primary-color: #4a6fa5;
    --secondary-color: #c89666;
    --accent-color: #e37222;
    --background-color: #f9f7f3;
    --dark-color: #2c3e50;
    --light-color: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

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

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

/* Header */
header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

header h1 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

nav a:hover, nav a.active {
    color: var(--primary-color);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    padding: 0 20px;
}

.hero-content h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

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

/* Summary Section */
.summary {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 30px 0;
    text-align: center;
    margin-bottom: 60px;
}

.summary h3 {
    font-family: var(--font-secondary);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.summary p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 60px 0;
}

.features h2 {
    font-family: var(--font-secondary);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card h3 {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin: 20px 0 10px;
    padding: 0 20px;
}

.feature-card p {
    color: var(--text-light);
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
}

.testimonials h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Latest Posts */
.latest-posts {
    padding: 60px 0;
    background-color: var(--light-color);
}

.latest-posts h2 {
    font-family: var(--font-secondary);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.posts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.post-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card h3 {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin: 20px 20px 10px;
    line-height: 1.4;
}

.post-card p {
    color: var(--text-light);
    padding: 0 20px;
    margin-bottom: 20px;
}

.post-card .btn-secondary {
    margin: 0 20px 20px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-info, .footer-links, .footer-legal, .footer-social {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    margin-bottom: 15px;
}

.footer-info h3 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

.footer-info p {
    color: #bbb;
    margin-bottom: 10px;
}

.footer-links h3, .footer-legal h3, .footer-social h3 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

.footer-links ul, .footer-legal ul {
    margin-bottom: 20px;
}

.footer-links a, .footer-legal a {
    color: #bbb;
    display: inline-block;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--light-color);
    transform: translateX(5px);
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    color: #888;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(44, 62, 80, 0.95);
    padding: 15px 0;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--light-color);
    text-align: center;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-cookie.accept {
    background-color: var(--success-color);
    color: white;
}

.btn-cookie.configure {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.btn-cookie.reject {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
}

.cookie-more-info {
    font-size: 14px;
    color: #bbb;
}

.cookie-more-info a {
    color: var(--light-color);
    text-decoration: underline;
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
    padding: 60px 0;
    margin-bottom: 60px;
}

.page-header h1 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Page */
.services {
    padding: 60px 0;
}

.service-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h2 {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.service-content ul li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Methodology Section */
.methodology {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.methodology h2 {
    font-family: var(--font-secondary);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.methodology-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.step h3 {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Pricing Section */
.pricing {
    padding: 60px 0;
    background-color: var(--light-color);
}

.pricing h2 {
    font-family: var(--font-secondary);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

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

.popular-tag {
    position: absolute;
    top: 0;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--light-color);
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 0 0 5px 5px;
}

.pricing-card h3 {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.pricing-card .session {
    color: var(--text-light);
    margin-bottom: 20px;
}

.pricing-card ul {
    text-align: left;
    margin-bottom: 30px;
    padding-left: 20px;
}

.pricing-card li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.pricing-card li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/cta-bg.jpg') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    color: var(--light-color);
}

.cta h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* Blog Page */
.blog-posts {
    padding: 60px 0;
}

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

.post-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: var(--light-color);
    transition: var(--transition);
}

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

.post-content {
    padding: 20px;
}

.post-content h2 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    line-height: 1.4;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 10px;
}

/* Blog Categories */
.blog-categories {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.blog-categories h2 {
    font-family: var(--font-secondary);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.category-tag {
    background-color: var(--light-color);
    color: var(--dark-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.category-tag:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

/* Newsletter */
.newsletter {
    padding: 60px 0;
    background-color: var(--dark-color);
    color: var(--light-color);
}

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

.newsletter h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.newsletter p {
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-family: var(--font-primary);
}

.newsletter-form .btn-primary {
    padding: 0 20px;
    border-radius: 5px;
}

.privacy-note {
    font-size: 0.9rem;
    color: #aaa;
}

.privacy-note a {
    color: var(--light-color);
    text-decoration: underline;
}

/* About Page */
.about-story, .mission-values {
    padding: 60px 0;
}

.about-content, .mission-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.about-text, .mission-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2, .mission-text h2, .values h2 {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.about-text p, .mission-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

/* Team Section */
.team {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.team h2 {
    font-family: var(--font-secondary);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.team-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.team-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.team-card h3 {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin: 20px 0 5px;
    padding: 0 15px;
}

.team-card p {
    color: var(--text-light);
    padding: 0 15px;
    margin-bottom: 15px;
}

.team-card p:nth-child(3) {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

/* Certifications */
.certifications {
    padding: 60px 0;
}

.certifications h2 {
    font-family: var(--font-secondary);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.certifications > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.certification-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.certification-item img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.certification-item h3 {
    font-family: var(--font-secondary);
    color: var(--primary-color);
}

/* Testimonials Slider */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50px;
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: var(--light-color) transparent;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-left: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Page */
.contact-container {
    padding: 60px 0;
}

.contact-container .container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item svg {
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.info-item h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.info-item p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.social-contact h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form .checkbox input {
    width: auto;
}

.contact-form .checkbox label {
    margin-bottom: 0;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
}

/* Map Section */
.map-section {
    padding-bottom: 60px;
}

.map-section h2 {
    font-family: var(--font-secondary);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ Section */
.faq {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.faq h2 {
    font-family: var(--font-secondary);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

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

.faq-item {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-content svg {
    color: var(--success-color);
    margin-bottom: 20px;
}

.modal-content h2 {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin-bottom: 20px;
}

.modal-content p {
    margin-bottom: 30px;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px 20px;
    }

    .logo-container {
        margin-bottom: 15px;
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .footer-container {
        gap: 30px;
    }

    .footer-info, .footer-links, .footer-legal, .footer-social {
        flex-basis: 100%;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .feature-card, .post-card, .pricing-card {
        min-width: 100%;
    }

    .about-content, .mission-content {
        flex-direction: column;
    }

    .about-image, .about-text, .mission-text, .values {
        max-width: 100%;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card img {
        height: 200px;
    }

    .contact-form-container, .contact-info {
        flex-basis: 100%;
    }

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

    .newsletter-form input, .newsletter-form .btn-primary {
        width: 100%;
    }

    .pricing-card.featured {
        transform: none;
    }

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

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }

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

    .btn-primary, .btn-secondary {
        width: 100%;
    }

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

    .features h2, .testimonials h2, .latest-posts h2, .about-text h2, .mission-text h2, .values h2, .team h2, .certifications h2, .faq h2 {
        font-size: 1.8rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}
