/* Base Styles */
:root {
    --primary-color: #2c8e43;
    --primary-dark: #1e6630;
    --secondary-color: #f5a623;
    --accent-color: #e67e22;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --border-color: #dee2e6;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --success-color: #28a745;
    --error-color: #dc3545;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f8f9fa;
}

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

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

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

.center-btn {
    display: block;
    margin: 20px auto;
    max-width: 200px;
}

section {
    padding: 60px 20px;
}

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

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

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

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

header h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--primary-color);
    background-color: var(--light-gray);
}

.nav-links li a i {
    margin-right: 5px;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 5%;
    background-color: #f0f5f0;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 40px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray-color);
}

.hero-image {
    flex: 1;
    max-width: 550px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 5%;
    background-color: white;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: var(--light-color);
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-box p {
    color: var(--gray-color);
}

/* About Preview Section */
.about-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5%;
    background-color: #f0f5f0;
}

.about-content {
    flex: 1;
    max-width: 600px;
    padding-right: 40px;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
    font-size: 1.1rem;
}

.about-content ul {
    margin-bottom: 30px;
}

.about-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-content ul li i {
    color: var(--success-color);
    margin-right: 10px;
}

.about-image {
    flex: 1;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

/* Recent Posts Section */
.recent-posts {
    padding: 60px 5%;
    background-color: white;
}

.recent-posts h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.post-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.post-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.post-content {
    padding: 20px;
}

.post-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.post-content p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.read-more::after {
    content: "→";
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

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

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

.testimonials h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
}

.testimonial {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
    margin: 0 15px;
    text-align: left;
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text p {
    font-style: italic;
    color: var(--dark-color);
    font-size: 1.1rem;
    position: relative;
}

.testimonial-text p::before, .testimonial-text p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.testimonial-author p {
    margin: 0;
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 60px 5%;
}

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

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

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

.cta .btn {
    background-color: white;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 12px 30px;
}

.cta .btn:hover {
    background-color: var(--light-gray);
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 5% 20px;
}

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

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-logo p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after, .footer-contact h3::after, .footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

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

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

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

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
}

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

.page-number {
    font-size: 0.8rem;
    opacity: 0.6;
}

.glossary-link a {
    color: rgba(255, 255, 255, 0.8);
}

.glossary-link a:hover {
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(52, 58, 64, 0.95);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    min-width: 120px;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-content a:hover {
    color: white;
}

/* Page Banner */
.page-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 5%;
    text-align: center;
}

.banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Styles */
.blog-content {
    display: flex;
    padding: 60px 5%;
    gap: 40px;
}

.blog-filter {
    flex: 0 0 25%;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
    align-self: flex-start;
    position: sticky;
    top: 100px;
}

.blog-filter h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.category-list {
    margin-bottom: 30px;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list li a {
    display: block;
    padding: 8px 10px;
    border-radius: 4px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.category-list li a:hover, .category-list li a.active {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--light-gray);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--primary-color);
    color: white;
}

.blog-posts {
    flex: 1;
}

.blog-post {
    margin-bottom: 40px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    display: flex;
    flex-direction: column;
}

.post-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

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

.post-category {
    color: var(--primary-color);
    font-weight: 600;
}

.newsletter {
    background-color: #f0f5f0;
    padding: 60px 5%;
    text-align: center;
}

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

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

.newsletter p {
    margin-bottom: 30px;
    color: var(--gray-color);
}

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

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
}

.form-note {
    font-size: 0.8rem;
    opacity: 0.7;
}

@media (max-width: 992px) {
    .blog-post {
        flex-direction: column;
    }
    
    .post-image {
        width: 100%;
        height: 250px;
    }
    
    .blog-content {
        flex-direction: column;
    }
    
    .blog-filter {
        position: static;
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Blog Post Styles */
.blog-post-header {
    background-color: var(--light-color);
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.post-header-content {
    max-width: 800px;
    margin-bottom: 30px;
}

.post-header-content h1 {
    font-size: 2.5rem;
    margin: 15px 0 20px;
    color: var(--primary-color);
    line-height: 1.2;
}

.post-share {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.post-share span {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--light-gray);
    border-radius: 50%;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.post-share a:hover {
    background-color: var(--primary-color);
    color: white;
}

.post-featured-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.blog-post-content {
    padding: 60px 5%;
    display: flex;
    gap: 40px;
}

.post-content-main {
    flex: 1;
    max-width: 800px;
}

.post-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
}

.post-content-main h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 40px 0 20px;
}

.post-content-main h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.post-content-main p {
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.post-content-main ul li, .post-content-main ol li {
    margin-bottom: 10px;
}

.post-content-main .post-image {
    margin: 30px 0;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.post-content-main .post-image img {
    width: 100%;
    height: auto;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-top: 10px;
}

.post-sidebar {
    flex: 0 0 30%;
    align-self: flex-start;
    position: sticky;
    top: 100px;
}

.author-box {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
    text-align: center;
}

.author-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.author-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--gray-color);
}

.author-box h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.author-box p {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.related-posts {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.related-posts h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.related-post {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

.related-post img {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    margin-right: 15px;
    object-fit: cover;
}

.related-post h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.related-post h4 a {
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.related-post h4 a:hover {
    color: var(--primary-color);
}

.related-post .post-date {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.popular-tags {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.popular-tags h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    background-color: var(--light-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.prev-post, .next-post {
    max-width: 40%;
}

.prev-post a, .next-post a {
    display: flex;
    align-items: center;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.prev-post a:hover, .next-post a:hover {
    color: var(--primary-color);
}

.prev-post i, .next-post i {
    font-size: 1.2rem;
}

.prev-post i {
    margin-right: 10px;
}

.next-post i {
    margin-left: 10px;
}

.post-cta {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.post-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.post-cta p {
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .blog-post-content {
        flex-direction: column;
    }
    
    .post-sidebar {
        position: static;
        width: 100%;
        margin-top: 40px;
    }
}

/* Services Page Styles */
.services-overview {
    padding: 60px 5%;
}

.service-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.service-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-intro p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 15px;
}

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

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

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

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.service-content ul li {
    margin-bottom: 8px;
    position: relative;
}

.service-content ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.service-process {
    padding: 60px 5%;
    background-color: var(--light-color);
    text-align: center;
}

.service-process h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    position: relative;
}

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

.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.step-content p {
    color: var(--gray-color);
}

.service-plans {
    padding: 60px 5%;
    text-align: center;
}

.service-plans h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--gray-color);
}

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

.plan-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.plan-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

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

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.plan-price {
    font-size: 1.2rem;
    color: var(--gray-color);
    font-weight: 600;
}

.plan-features ul {
    margin-bottom: 30px;
}

.plan-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.plan-features ul li i {
    color: var(--success-color);
    margin-right: 10px;
    margin-top: 3px;
}

.service-faq {
    padding: 60px 5%;
    background-color: var(--light-color);
}

.service-faq h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.faq-item {
    margin-bottom: 20px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--dark-color);
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Contact Page Styles */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 5%;
}

.contact-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-card p {
    margin-bottom: 10px;
    color: var(--gray-color);
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-card .note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 15px;
}

.contact-form-section {
    padding: 60px 5%;
    display: flex;
    gap: 40px;
}

.form-container {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-container > p {
    margin-bottom: 30px;
    color: var(--gray-color);
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 0 0 calc(50% - 10px);
}

.form-group.full-width {
    flex: 0 0 100%;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-check {
    display: flex;
    align-items: flex-start;
}

.form-check input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-check label {
    margin: 0;
    font-weight: normal;
    font-size: 0.9rem;
}

.map-container {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.map-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.map {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.map iframe {
    border: none;
}

.directions h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.directions p {
    margin-bottom: 10px;
    color: var(--gray-color);
}

.service-request {
    padding: 60px 5%;
    background-color: var(--light-color);
    text-align: center;
}

.service-request h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.request-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.request-option {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.request-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.option-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.option-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.request-option h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.request-option p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.request-option .note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 15px;
}

.scroll-to {
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px var(--shadow-color);
    animation: modalAnimation 0.3s ease-out;
}

@keyframes modalAnimation {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--gray-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--dark-color);
}

.modal i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.modal h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.modal p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.modal-btn {
    min-width: 120px;
}

/* About Page Styles */
.about-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5%;
    gap: 40px;
}

.about-intro-content {
    flex: 1;
    max-width: 600px;
}

.about-intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.2;
}

.about-intro-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
    line-height: 1.7;
}

.about-image {
    flex: 1;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.our-values {
    padding: 60px 5%;
    background-color: var(--light-color);
    text-align: center;
}

.our-values h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.value-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

.team {
    padding: 60px 5%;
    text-align: center;
}

.team h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.team-member {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.member-position {
    font-weight: 500;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.member-desc {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.facilities {
    padding: 60px 5%;
    background-color: var(--light-color);
}

.facilities h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.facility {
    display: flex;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.facility img {
    width: 200px;
    height: auto;
    object-fit: cover;
}

.facility-info {
    padding: 20px;
    flex: 1;
}

.facility-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.facility-info p {
    color: var(--gray-color);
    line-height: 1.6;
}

.certifications {
    padding: 60px 5%;
    text-align: center;
}

.certifications h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.certifications-content p {
    margin-bottom: 30px;
    color: var(--gray-color);
}

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

.certification {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.certification img {
    height: 80px;
    margin-bottom: 15px;
    object-fit: contain;
}

.certification h4 {
    font-size: 1rem;
    color: var(--dark-color);
}

.milestones {
    padding: 60px 5%;
    background-color: var(--light-color);
}

.milestones h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.timeline-year {
    min-width: 100px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: 25px;
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.timeline-content {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-left: 20px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--gray-color);
}

@media (max-width: 992px) {
    .about-intro, .contact-form-section {
        flex-direction: column;
    }
    
    .about-image, .form-container, .map-container {
        max-width: 100%;
    }
    
    .facility {
        flex-direction: column;
    }
    
    .facility img {
        width: 100%;
        height: 200px;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
}

/* Glossary Styles */
.glossary-content {
    padding: 60px 5%;
}

.glossary-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.glossary-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.glossary-navigation {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.glossary-navigation h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.alphabet-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    font-weight: 600;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.alphabet-nav a:hover {
    background-color: var(--primary-color);
    color: white;
}

.glossary-terms {
    max-width: 800px;
    margin: 0 auto 50px;
}

.glossary-section {
    margin-bottom: 40px;
}

.letter-heading {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.glossary-term {
    margin-bottom: 30px;
}

.glossary-term h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.glossary-term p {
    color: var(--gray-color);
    line-height: 1.7;
}

.glossary-info {
    display: flex;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.info-box {
    flex: 1;
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-box p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

@media (max-width: 768px) {
    .glossary-info {
        flex-direction: column;
    }
}

/* Legal Pages Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.policy-introduction {
    margin-bottom: 40px;
}

.policy-introduction p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.policy-section h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--dark-color);
}

.policy-section p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--gray-color);
}

.policy-section ul, .policy-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-section ul li, .policy-section ol li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--gray-color);
}

.toc {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.toc a {
    color: var(--dark-color);
    line-height: 1.8;
}

.toc a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-details {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.policy-footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--gray-color);
}

.refund-steps {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.refund-steps h3 {
    margin-top: 0;
}

.refund-steps ol {
    counter-reset: item;
    padding-left: 0;
}

.refund-steps ol li {
    counter-increment: item;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.refund-steps ol li::before {
    content: counter(item);
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero, .about-preview {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content, .about-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-image, .about-image {
        max-width: 100%;
    }
    
    .about-content ul li {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .features, .service-grid, .post-cards, .contact-info, .values-grid, .team-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-steps, .plan-cards, .request-options {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step, .plan-card, .request-option {
        max-width: 100%;
        width: 100%;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: calc(100vh - 80px);
        gap: 0;
        text-align: center;
        transition: right 0.5s ease;
        box-shadow: 0 5px 15px var(--shadow-color);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 0;
    }
    
    .nav-links li a {
        display: block;
        padding: 20px;
        font-size: 1.2rem;
    }
    
    .burger {
        display: block;
    }
    
    .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger.active .line2 {
        opacity: 0;
    }
    
    .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .features, .service-grid, .post-cards, .contact-info, .values-grid, .team-grid, .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author img {
        margin: 0 auto 10px;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .prev-post, .next-post {
        max-width: 100%;
    }
    
    .form-group {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .hero h2, .about-content h2, .recent-posts h2, .testimonials h2, .service-intro h2, .service-process h2, .service-plans h2, .service-faq h2, .service-request h2, .form-container h2, .map-container h2, .about-intro-content h2, .our-values h2, .team h2, .facilities h2, .certifications h2, .milestones h2 {
        font-size: 1.8rem;
    }
    
    .post-header-content h1 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}
