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

:root {
    --primary-color: #2e8b57;
    --secondary-color: #4b7f52;
    --accent-color: #f5a623;
    --text-color: #333;
    --light-text: #fff;
    --dark-bg: #1e3a2a;
    --light-bg: #f9f9f9;
    --light-accent: #e8f5e9;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

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

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: -2rem auto 3rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

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

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

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

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

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

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

.btn-small {
    padding: 8px 15px;
    font-size: 0.85rem;
}

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

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    max-width: 180px;
}

.logo img {
    max-height: 60px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
}

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

.nav-menu a.btn {
    color: var(--primary-color);
}

.nav-menu a.btn:hover {
    color: var(--light-text);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--light-accent);
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    text-align: right;
}

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

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

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.about .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
}

/* Services Section */
.services {
    padding: 80px 0;
}

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

.service-card {
    text-align: center;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-cta {
    text-align: center;
    margin-top: 40px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.testimonial-slider {
    overflow: hidden;
}

.testimonial-slide {
    padding: 20px;
}

.testimonial-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.testimonial-prev, .testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-prev:hover, .testimonial-next:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* Blog Section */
.recent-posts, .blog-section {
    padding: 80px 0;
}

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

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 20px;
}

.blog-date {
    color: #777;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.blog-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.blog-content p {
    margin-bottom: 15px;
    color: #555;
}

.read-more {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
}

.read-more svg {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover svg {
    transform: translateX(3px);
}

.blog-cta {
    text-align: center;
    margin-top: 40px;
}

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

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

.newsletter-content h2 {
    color: var(--light-text);
    margin-bottom: 20px;
}

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

.form-group button {
    border-radius: 0 30px 30px 0;
    border: none;
    padding: 12px 25px;
}

.form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.form-check input {
    margin-right: 10px;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: #aaa;
    padding: 60px 0 30px;
}

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

.footer-about {
    grid-column: span 2;
}

.footer-logo {
    margin-bottom: 20px;
    max-width: 150px;
}

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

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

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-links h3 {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--light-text);
}

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

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact li svg {
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 4px;
}

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

/* Page Banner */
.page-banner {
    background-color: var(--light-accent);
    padding: 60px 0;
    text-align: center;
}

.breadcrumbs {
    margin-top: 10px;
    color: #777;
}

.breadcrumbs a {
    color: var(--text-color);
}

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

.breadcrumbs span {
    color: var(--primary-color);
}

/* About Page Styles */
.about-story, .mission-vision {
    padding: 80px 0;
}

.about-story .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-content {
    flex: 1;
}

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

.mission, .vision {
    padding: 40px;
    border-radius: 8px;
    background-color: var(--light-accent);
    text-align: center;
}

.icon-container {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.values {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.value-card {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team {
    padding: 80px 0;
}

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

.team-member {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--light-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.member-bio {
    color: #666;
}

.certifications {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.certification-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.certification-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.certification-info h3 {
    margin-bottom: 5px;
}

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

.services-list {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.service-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    text-align: center;
}

.service-image img, .service-image svg {
    max-width: 300px;
    margin: 0 auto;
}

.service-details {
    flex: 2;
}

.service-details h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-details h3 {
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.service-details ul {
    margin-bottom: 25px;
}

.service-details li {
    margin-bottom: 8px;
}

.pricing {
    padding: 80px 0;
}

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

.pricing-column {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

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

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

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

.pricing-header {
    background-color: var(--light-accent);
    padding: 30px;
    text-align: center;
}

.pricing-column.featured .pricing-header {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 15px 0;
}

.pricing-column.featured .price {
    color: var(--light-text);
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.period {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.pricing-column.featured .period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-features svg {
    margin-right: 10px;
    color: var(--primary-color);
}

.pricing-features svg.feather-x {
    color: #ff5252;
}

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.accordion-item {
    margin-bottom: 15px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-button {
    width: 100%;
    text-align: left;
    padding: 20px;
    background-color: #fff;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.accordion-button:hover {
    background-color: var(--light-accent);
}

.accordion-button::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.accordion-button.active::after {
    content: '-';
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-button.active + .accordion-content {
    padding: 0 20px 20px;
    max-height: 300px;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

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

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

.contact-form-container {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form-container h2 {
    margin-bottom: 30px;
}

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

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

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.contact-info {
    flex: 1;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

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

.contact-text h3 {
    margin-bottom: 5px;
}

.social-connect h3 {
    margin-bottom: 15px;
}

.contact-image {
    margin-top: 40px;
    text-align: center;
}

.map-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.map-container iframe {
    border: 0;
}

/* Blog Post Styles */
.blog-post {
    padding: 80px 0;
}

.post-header {
    margin-bottom: 40px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    color: #777;
}

.post-meta span {
    display: flex;
    align-items: center;
}

.post-meta svg {
    margin-right: 5px;
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.post-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.post-content h2 {
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.post-content h3 {
    margin: 30px 0 15px;
}

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

.post-content li {
    margin-bottom: 10px;
}

.post-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    border-left: 4px solid var(--primary-color);
    background-color: var(--light-accent);
    font-style: italic;
}

.post-callout {
    background-color: var(--light-accent);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.post-callout h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.post-tags {
    margin: 40px 0;
}

.post-tags span {
    font-weight: 600;
    margin-right: 10px;
}

.post-tags a {
    display: inline-block;
    background-color: var(--light-accent);
    padding: 5px 10px;
    margin-right: 8px;
    margin-bottom: 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.author-bio {
    display: flex;
    align-items: center;
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--light-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 2rem;
    color: var(--primary-color);
}

.author-info h3 {
    margin-bottom: 10px;
}

.share-post {
    margin: 40px 0;
}

.share-post h3 {
    margin-bottom: 15px;
}

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

.share-buttons a {
    width: 40px;
    height: 40px;
    background-color: var(--light-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.share-buttons a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.related-posts {
    margin: 60px 0;
}

.related-posts h3 {
    margin-bottom: 30px;
}

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

.related-post {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.related-post h4 {
    padding: 15px;
    margin-bottom: 0;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.category-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.category-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category-card h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.category-card p {
    color: #777;
    margin-bottom: 0;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 4px;
    background-color: #fff;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.pagination a:hover, .pagination a.active {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.pagination span {
    margin: 0 5px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
}

.cta h2 {
    color: var(--light-text);
    margin-bottom: 20px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta .btn {
    background-color: var(--light-text);
    color: var(--primary-color);
}

.cta .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Legal Pages Styles */
.legal-content {
    padding: 60px 0;
}

.legal-intro {
    margin-bottom: 40px;
}

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

.legal-section h2 {
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.legal-section h3 {
    margin: 30px 0 15px;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
}

/* Cookie Settings Section */
.cookie-settings-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.cookie-preferences {
    max-width: 800px;
    margin: 0 auto;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}

.cookie-option h4 {
    margin-bottom: 5px;
}

.cookie-option p {
    margin-bottom: 0;
    color: #666;
}

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

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

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

.switch-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-switch input:checked + .switch-slider {
    background-color: var(--primary-color);
}

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

.cookie-settings-footer {
    text-align: center;
    margin-top: 30px;
}

/* Thanks Page Styles */
.thanks-section {
    padding: 80px 0;
}

.thanks-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.thanks-content {
    flex: 1;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-content h1 {
    margin-bottom: 20px;
}

.thanks-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.thanks-image {
    flex: 1;
    text-align: center;
}

.recommended-tours {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.services-grid.smaller {
    grid-template-columns: repeat(3, 1fr);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container,
    .about .container,
    .contact-wrapper,
    .thanks-section .container {
        flex-direction: column;
    }
    
    .about-story .container {
        flex-direction: column-reverse;
    }
    
    .hero-content,
    .about-content,
    .about-image,
    .contact-form-container,
    .contact-info,
    .thanks-content,
    .thanks-image {
        max-width: 100%;
    }
    
    .services-grid.smaller {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .pricing-table {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-column {
        width: 100%;
        max-width: 400px;
        margin-bottom: 30px;
    }
    
    .pricing-column.featured {
        transform: none;
    }
    
    .pricing-column.featured:hover {
        transform: translateY(-10px);
    }
    
    .service-item,
    .service-item.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .service-image,
    .service-details {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
    }
    
    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .form-group input[type="email"] {
        width: 60%;
    }
    
    .footer-about {
        grid-column: span 1;
    }
    
    .team-grid,
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .thanks-buttons {
        flex-direction: column;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-buttons,
    .form-group {
        flex-direction: column;
    }
    
    .hero-buttons .btn,
    .form-group input[type="email"],
    .form-group button {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin: 0 auto 20px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 15px;
    }
}