:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #34495e;
    --white-color: #ffffff;
    --border-radius: 8px;
    --font-main: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
    width: 100%;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    color: var(--dark-color);
    line-height: 1.2;
}

h1 { font-size: 3rem; margin-bottom: 1rem; }
h2 { font-size: 2.25rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }

p {
    margin-bottom: 1rem;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-button, .cta-button-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

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

.cta-button-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.site-header {
    background-color: var(--white-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 0.25rem;
}

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

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
    margin: -10px;
}

.burger-bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 6px auto;
    background-color: var(--dark-color);
    transition: all 0.3s ease-in-out;
}

.main-nav.open {
    transform: translateX(0);
}

.burger-menu.open .burger-bar {
    background-color: var(--white-color);
}

.burger-menu.open .burger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.open .burger-bar:nth-child(2) {
    opacity: 0;
}

.burger-menu.open .burger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

main > section {
    padding: 5rem 0;
}

.hero-welcome {
    background-color: var(--light-color);
    padding: 6rem 0;
}

.hero-welcome-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-welcome-text {
    flex: 1;
}

.hero-welcome-image-stack {
    flex: 1;
    position: relative;
    height: 400px;
}

.hero-welcome-image-stack img {
    position: absolute;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

.hero-img-1 {
    width: 70%;
    height: 70%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-img-2 {
    width: 60%;
    height: 60%;
    bottom: 0;
    right: 0;
    border: 5px solid var(--white-color);
}

.ways-to-help-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.help-card {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.help-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.help-card a {
    font-weight: 600;
}

.featured-pets-interactive {
    background-color: var(--light-color);
}

.pet-slider-wrapper {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.pet-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.pet-slide {
    flex-shrink: 0;
    width: calc(100% / 3);
    padding: 0 1rem;
    position: relative;
}

.pet-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.pet-slide-info {
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--white-color);
    padding: 3rem 1.5rem 1.5rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.pet-slide-info h3 {
    color: var(--white-color);
}

.pet-slide-info a {
    color: var(--secondary-color);
    font-weight: 600;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}
.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.our-impact {
    background-color: var(--dark-color);
    color: var(--light-color);
}

.our-impact h2 {
    color: var(--white-color);
}

.impact-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.impact-text { flex: 1; }

.impact-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: right;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1.2rem;
}

.adoption-process-preview {
    background-color: var(--light-color);
}

.process-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.process-image-side {
    flex: 1;
}

.process-image-side img {
    border-radius: var(--border-radius);
}

.process-text-side {
    flex: 1;
}

.process-steps {
    list-style: none;
    padding-left: 0;
}

.process-steps li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.process-steps span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 700;
    margin-right: 1rem;
}

.success-story {
    background: url('images/15.webp') no-repeat center center/cover;
    position: relative;
    color: var(--dark-color);
}

.success-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.story-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 400px;
}

.story-content {
    max-width: 800px;
}

.story-blockquote {
    font-size: 1.75rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.story-author {
    font-weight: 600;
    font-size: 1.2rem;
}

.our-philosophy {
    text-align: center;
}

.philosophy-container {
    max-width: 900px;
}

.quick-questions-interactive {
    background-color: var(--light-color);
}

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

.faq-item {
    border-bottom: 1px solid #ccc;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.faq-answer p {
    padding: 0 1rem 1.5rem;
}

.link-to-more {
    display: block;
    text-align: center;
    font-weight: 600;
    margin-top: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.final-cta {
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
}

.final-cta h2 {
    color: var(--white-color);
}

.cta-container {
    max-width: 700px;
}

.site-footer-main {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding-top: 4rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-branding {
    flex: 2;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-links {
    flex: 3;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-nav-column h4 {
    color: var(--white-color);
    margin-bottom: 1rem;
}

.footer-nav-column ul li {
    margin-bottom: 0.5rem;
}

.footer-nav-column a {
    color: var(--light-color);
}

.footer-nav-column a:hover {
    color: var(--secondary-color);
}

.footer-bottom-bar {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid var(--text-color);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .pet-slide { width: 50%; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    main > section { padding: 3rem 0; }

    .nav-links {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        height: 100vh;
        background-color: var(--dark-color);
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1001;
    }
    .main-nav ul li a {
        color: var(--white-color);
        font-size: 1.5rem;
        padding: 1rem;
        display: block;
    }
    
    .burger-menu {
        display: block;
    }
    
    .hero-welcome-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-welcome-image-stack {
        display: none;
    }
    
    .ways-to-help-container {
        grid-template-columns: 1fr;
    }
    .pet-slide { width: 100%; }
    .slider-btn { width: 40px; height: 40px; font-size: 1.5rem;}
    
    .impact-stats { text-align: center;}
    .stat-item { text-align: center;}
    .impact-container,
    .process-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .impact-stats {
        text-align: center;
    }

    .stat-item {
        text-align: center;
    }
    
    .process-steps {
        text-align: left;
        display: inline-block;
    }
    .story-container { min-height: auto; padding: 2rem 0; }
    
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .footer-container { flex-direction: column; text-align: center;}
    .footer-links { justify-content: center; }
}

@media (max-width: 320px) {
    html {
        font-size: 14px;
    }
    .container {
        width: 95%;
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .gallery-grid { grid-template-columns: 1fr; }
}
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#scrollToTopBtn:hover {
    background-color: var(--secondary-color);
}

#scrollToTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}















.pets-hero {
    background-color: var(--light-color);
    text-align: center;
    padding: 4rem 0;
}

.pets-filter-section {
    padding: 2rem 0;
    background-color: var(--white-color);
    border-bottom: 1px solid var(--light-color);
}

.filter-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-label {
    font-weight: 600;
    color: var(--dark-color);
}

.filter-btn {
    background-color: var(--light-color);
    color: var(--text-color);
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #dbeaf5;
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.pets-gallery-section {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.pet-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

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

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

.pet-card.hidden {
    display: none;
}

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

.pet-card-content {
    padding: 1.5rem;
}

.pet-card-content h3 {
    margin-top: 0;
}

.pet-card-content a {
    margin-top: 1rem;
}

#no-results-message {
    text-align: center;
    font-size: 1.25rem;
    padding: 3rem 0;
}

.adult-pet-feature {
    padding: 5rem 0;
}

.adult-pet-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.adult-pet-image {
    flex: 1;
}

.adult-pet-image img {
    border-radius: var(--border-radius);
}

.adult-pet-text {
    flex: 1;
}

.pet-of-the-month {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 5rem 0;
}

.pet-of-the-month h2, .pet-of-the-month h3 {
    color: var(--white-color);
}

.potm-container {
    position: relative;
}

.featured-pet-profile {
    display: none;
    align-items: center;
    gap: 2rem;
}

.featured-pet-profile.active-profile {
    display: flex;
}

.featured-pet-profile img {
    /*flex-basis: 40%;*/
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.featured-pet-info {
    flex-basis: 60%;
}

.potm-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.potm-nav button {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    margin: 0 -25px;
}

.success-stories-pets {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.story-card {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.story-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.story-card blockquote {
    border: none;
    font-style: italic;
    font-size: 1.1rem;
}

.sponsorship-feature {
    padding: 5rem 0;
}

.sponsorship-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-direction: row-reverse;
}

.sponsorship-text { flex: 1; }
.sponsorship-image { flex: 1; }
.sponsorship-image img { border-radius: var(--border-radius); }

.prepare-for-visit {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.prepare-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.adoption-process-reminder {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: var(--white-color);
}

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

.reminder-container h2 {
    color: var(--white-color);
    margin-bottom: 0.5rem;
}

.reminder-steps {
    font-size: 1.5rem;
    font-weight: 600;
}

.cta-button-secondary:hover {
    border-color: var(--primary-color);
}

.final-cta-pets {
    padding: 5rem 0;
    text-align: center;
}

.final-cta-links {
    margin-top: 2rem;
}

.final-cta-links a {
    margin: 0 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .filter-panel {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .adult-pet-container,
    .sponsorship-container,
    .featured-pet-profile.active-profile {
        flex-direction: column;
        text-align: center;
    }

    .featured-pet-profile img {
        height: 250px;
    }

    .potm-nav {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 1.5rem;
        gap: 1rem;
    }

    .potm-nav button {
        margin: 0;
    }

    .story-grid,
    .prepare-steps {
        grid-template-columns: 1fr;
    }

    .reminder-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .reminder-steps {
        font-size: 1.2rem;
    }
}

















.about-hero {
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
    padding: 5rem 0;
}

.about-hero h1 {
    color: var(--white-color);
}

.founder-story {
    padding: 5rem 0;
}

.founder-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.founder-text { flex: 1.2; }
.founder-image { flex: 1; }
.founder-image img { border-radius: var(--border-radius); }

.mission-vision {
    background-color: var(--light-color);
    padding: 5rem 0;
}

.mission-vision-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mission-card, .vision-card {
    background-color: var(--white-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-color);
}

.core-values {
    padding: 5rem 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.team-interactive {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.team-container-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.team-display-area img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.team-display-area h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-selector-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background-color: var(--white-color);
    margin-bottom: 1rem;
}

.team-selector-item:hover {
    border-color: var(--primary-color);
}

.team-selector-item.active {
    border-color: var(--primary-color);
    background-color: #eaf5ff;
}

.team-selector-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.team-selector-item span {
    font-weight: 600;
}
.philosophy-deep-dive {
    padding: 6rem 0;
    background-image: url('images/38.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: var(--white-color);
    text-align: center;
}

.philosophy-deep-dive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.philosophy-container-about {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-deep-dive h2 {
    color: var(--white-color);
}

.impact-counter-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.count-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.count-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-color);
}

.history-timeline {
    padding: 5rem 0;
}

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

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 1rem 3rem;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--white-color);
    border: 4px solid var(--primary-color);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd)::after {
    right: -10px;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 1.5rem;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--light-color);
}

.timeline-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    margin-top: 1rem;
}

.timeline-content h3 {
    cursor: pointer;
}

.timeline-item.active .timeline-details {
    max-height: 200px;
}

.day-in-life {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.day-in-life-container {
    max-width: 900px;
}

.day-schedule article {
    margin-bottom: 2rem;
    border-left: 3px solid var(--primary-color);
    padding-left: 2rem;
}

.facility-gallery {
    padding: 5rem 0;
}

.gallery-grid-about {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-grid-about figure {
    text-align: center;
}

.gallery-grid-about img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
}

.gallery-grid-about figcaption {
    font-weight: 600;
}

.final-cta-about {
    padding: 5rem 0;
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
}

.final-cta-about h2 {
    color: var(--white-color);
}

.cta-buttons {
    margin-top: 2rem;
}
.cta-buttons a {
    margin: 0.5rem;
}

@media (max-width: 768px) {
    .founder-container {
        flex-direction: column;
        text-align: center;
    }

    .mission-vision-container {
        grid-template-columns: 1fr;
    }

    .value-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .team-container-grid {
        grid-template-columns: 1fr;
    }

    .team-display-area img {
        height: 300px;
    }
    
    .counter-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::after {
        left: 15px;
        margin-left: 0;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 50px;
        padding-right: 15px;
        left: 0;
        text-align: left;
    }

    .timeline-item::after,
    .timeline-item:nth-child(odd)::after,
    .timeline-item:nth-child(even)::after {
        left: 6px;
        right: auto;
        transform: translateX(0);
    }
    .gallery-grid-about {
        grid-template-columns: 1fr 1fr;
    }
    .philosophy-deep-dive {
        background-attachment: scroll;
    }
}

@media (max-width: 320px) {
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid-about {
        grid-template-columns: 1fr;
    }
}
.value-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    margin: 0 auto 1rem;
}
.value-item {
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(44, 62, 80, 0.1);
    background-color: var(--primary-color);
    color: var(--white-color); 
}
.value-item:hover h4,
.value-item:hover .value-icon {
    color: var(--white-color);
}
















.involve-hero {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/55.webp') no-repeat center center/cover;
    text-align: center;
    color: var(--white-color);
}

.involve-hero h1 {
    color: var(--white-color);
}

.involvement-options {
    padding: 5rem 0;
}

.options-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.option-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    display: block;
    height: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.option-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.option-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white-color);
    padding: 2rem;
    text-align: center;
}

.option-card-overlay h3 {
    color: var(--white-color);
}

.volunteer-feature {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.volunteer-feature-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.volunteer-feature-image {
    flex: 1;
    position: relative;
}

.volunteer-feature-image::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80%;
    height: 80%;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    z-index: 1;
}

.volunteer-feature-image img {
    border-radius: var(--border-radius);
    position: relative;
    z-index: 2;
}

.volunteer-feature-text {
    flex: 1.2;
}

.donation-visualizer-section {
    padding: 5rem 0;
}

.donation-visualizer {
    max-width: 900px;
    margin: 0 auto;
}

.donation-display {
    display: flex;
    gap: 2rem;
    align-items: center;
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.donation-display img {
    width: 50%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.donation-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.donation-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--light-color);
    background-color: var(--white-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donation-btn:hover {
    border-color: var(--primary-color);
}

.donation-btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.foster-fullwidth-feature {
    padding: 6rem 0;
    background: url('images/47.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
}

.foster-fullwidth-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.foster-fullwidth-text {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    max-width: 500px;
}

.wishlist-offset-grid {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.offset-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-item {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: scale(1.05);
}

.grid-item:nth-child(2) {
    transform: translateY(20px);
}
.grid-item:nth-child(2):hover {
    transform: translateY(10px) scale(1.05);
}

.grid-item img {
    height: 80px;
    margin: 0 auto 1.5rem;
}

.corporate-zigzag {
    padding: 5rem 0;
}

.corporate-zigzag-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.corporate-zigzag-text {
    flex: 1;
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.corporate-zigzag-image {
    flex: 1;
}

.corporate-zigzag-image img {
    border-radius: var(--border-radius);
}

.events-vertical-tabs {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.vertical-tabs-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tab-link {
    width: 100%;
    padding: 1rem;
    background: none;
    border: none;
    border-left: 4px solid #ddd;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.tab-link span {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-color);
    margin-top: 0.25rem;
}

.tab-link:hover {
    background-color: #eaf5ff;
}

.tab-link.active {
    border-left-color: var(--primary-color);
    background-color: var(--white-color);
}

.tabs-content .tab-pane {
    display: none;
}

.tabs-content .tab-pane.active {
    display: block;
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.tabs-content img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.application-process-visual {
    padding: 5rem 0;
}

.visual-process {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.visual-step {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}
.visual-step-icon {
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.visual-step-connector {
    flex: 1;
    height: 3px;
    background-color: var(--light-color);
    margin-top: 30px;
}

.final-cta-involve {
    padding: 5rem 0;
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
}

.final-cta-involve h2 {
    color: var(--white-color);
}

@media (max-width: 768px) {
    .options-container {
        grid-template-columns: 1fr;
    }
    
    .volunteer-feature-container {
        flex-direction: column;
        text-align: center;
    }
    .volunteer-feature-image::before {
        display: none;
    }
    
    .donation-display {
        flex-direction: column;
        text-align: center;
    }
    .donation-display img {
        width: 100%;
        height: 250px;
    }
    
    .offset-grid {
        grid-template-columns: 1fr;
    }
    .grid-item:nth-child(2) {
        transform: none;
    }
    .grid-item:nth-child(2):hover {
       transform: scale(1.05);
    }
    
    .corporate-zigzag-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .vertical-tabs-container {
        grid-template-columns: 1fr;
    }
    .tabs-nav {
        flex-direction: row;
        overflow-x: auto;
    }
    .tab-link {
        border-bottom: 4px solid #ddd;
        border-left: none;
        white-space: nowrap;
    }
     .tab-link.active {
        border-bottom-color: var(--primary-color);
    }
    
    .visual-process {
        flex-direction: column;
        align-items: center;
    }
    .visual-step-connector {
        width: 3px;
        height: 50px;
        margin: 1rem 0;
    }
}
























.guide-hero {
    padding: 5rem 0;
    background-color: var(--light-color);
    text-align: center;
}

.readiness-checklist-section {
    padding: 5rem 0;
}

.readiness-checklist {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-item {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.check-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.check-item span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: var(--light-color);
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
}

.check-item:hover input ~ span::before {
    background-color: #e0e0e0;
}

.check-item input:checked ~ span::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.check-item span::after {
    content: "";
    position: absolute;
    display: none;
    left: 9px;
    top: 5px;
    width: 6px;
    height: 12px;
    border: solid var(--white-color);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.check-item input:checked ~ span::after {
    display: block;
}

.process-roadmap {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.roadmap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.roadmap-step {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
}
.roadmap-step:nth-child(2) {
    margin-top: 3rem;
}
.roadmap-step:nth-child(3) {
    margin-top: -3rem;
}

.roadmap-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.finding-match-section {
    padding: 5rem 0;
}

.finding-match-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.finding-match-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.finding-match-images img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.finding-match-text {
    flex: 1;
}

.application-mythbusters {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.mythbusters-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.myth-card {
    background-color: var(--white-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    height: 100%;
}
.myth-image img {
    height: 200px;
    width: 200px;
    object-fit: cover;
    border-radius: 50%;
}
.checklist-conclusion {
    max-width: 700px;
    margin: 0 auto;
    background-color: #eaf5ff;
    border-left: 5px solid var(--primary-color);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    
    transition: all 0.4s ease;
}

.checklist-conclusion.cautious {
    background-color: #fffbe6;
    border-left-color: #fBBF24;
}

.checklist-conclusion.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 500px; 
    margin-top: 2rem;
    padding: 2rem;
}

.meet-and-greet-feature {
    padding: 8rem 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/66.webp') no-repeat center center/cover;
    text-align: center;
    color: var(--white-color);
}

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

.meet-greet-content h2 {
    color: var(--white-color);
}

.prepare-home-section {
    padding: 5rem 0;
}

.prepare-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.flip-card-guide {
    background-color: transparent;
    height: 350px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-guide .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: var(--border-radius);
}

.flip-card-guide.is-flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-guide .flip-card-front,
.flip-card-guide .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.flip-card-guide .flip-card-front {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: var(--white-color);
    text-align: center;
}

.flip-card-guide .flip-card-front img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.flip-card-guide .flip-card-front::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 40%, transparent 80%);
    z-index: 2;
    border-radius: var(--border-radius);
}

.flip-card-guide .flip-card-front h3 {
    position: relative;
    z-index: 3;
    padding: 1.5rem;
    color: var(--white-color);
    margin: 0;
}

.flip-card-guide .flip-card-back {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: rotateY(180deg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flip-card-guide .flip-card-back ul {
    list-style: circle;
    padding-left: 1.5rem;
    text-align: left;
}

.adoption-fee-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.fee-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.fee-text { flex: 1.2; }
.fee-image { flex: 1; }
.fee-image img { border-radius: var(--border-radius); }
.fee-includes-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}
.fee-includes-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}
.fee-includes-list li::before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.first-weeks-tips {
    padding: 5rem 0;
}
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}
.tip-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.our-promise-section {
    padding: 5rem 0;
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
}
.promise-container {
    max-width: 800px;
}
.our-promise-section h2 {
    color: var(--white-color);
}
.promise-buttons { margin-top: 2rem; }
.promise-buttons a { margin: 0.5rem; }

@media (max-width: 768px) {
    .roadmap {
        grid-template-columns: 1fr 1fr;
    }
    .roadmap-step:nth-child(2),
    .roadmap-step:nth-child(3) {
        margin-top: 0;
    }

    .finding-match-container {
        flex-direction: column;
    }
    .finding-match-images {
        flex-direction: column;
    }
    .finding-match-text {
        text-align: center;
    }
    
    .mythbusters-grid {
        grid-template-columns: 1fr;
    }
    .myth-image {
        display: block;
    }

    .prepare-home-grid {
        grid-template-columns: 1fr;
    }
    .fee-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    .roadmap {
        grid-template-columns: 1fr;
    }
    .finding-match-images {
        flex-direction: column;
    }
}












.legal-page .legal-hero {
    padding: 4rem 0;
    background-color: var(--dark-color);
    color: var(--white-color);
    text-align: center;
}

.legal-page .legal-hero h1 {
    color: var(--white-color);
    margin-bottom: 0.5rem;
}

.legal-page .legal-hero p {
    color: var(--light-color);
    margin-bottom: 0;
}

.legal-content {
    padding: 4rem 0;
}

.legal-content .container {
    max-width: 800px;
}

.legal-content article {
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--light-color);
    padding-bottom: 0.5rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}
.thank-you-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--light-color);
    text-align: center;
}

.thank-you-container {
    width: 100%;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.thank-you-logo img {
    height: 60px;
    margin: 0 auto 1.5rem;
}

.thank-you-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thank-you-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.thank-you-content .cta-button {
    margin-top: 2rem;
}







.faq-hero {
    padding: 5rem 0;
    background: linear-gradient(45deg, var(--primary-color), #5dade2);
    text-align: center;
    color: var(--white-color);
}

.faq-hero h1 {
    color: var(--white-color);
}

.faq-categories {
    padding: 3rem 0;
    background-color: var(--light-color);
}

.category-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.category-card {
    background-color: var(--white-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.category-card:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.faq-layout-asymmetric {
    padding: 5rem 0;
}

.faq-asymmetric-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 3rem;
}

.faq-asymmetric-image img {
    border-radius: var(--border-radius);
}

.qa-block {
    margin-bottom: 2rem;
}

.qa-block h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.faq-layout-flip-cards {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.flip-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.flip-card-faq {
    background-color: transparent;
    height: 250px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-faq .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: var(--border-radius);
}

.flip-card-faq.is-flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-faq .flip-card-front,
.flip-card-faq .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.flip-card-faq .flip-card-front {
    background-color: var(--white-color);
}

.flip-card-faq .flip-card-back {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: rotateY(180deg);
}

.faq-parallax-divider {
    padding: 6rem 0;
    background-image: url('images/71.webp');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    text-align: center;
    position: relative;
}
.faq-parallax-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.faq-parallax-divider .parallax-content {
    max-width: 800px;
    color: var(--white-color);
    position: relative; 
    z-index: 2; 
    margin: 0 auto;
}
.faq-parallax-divider .parallax-content h2 {
    color: var(--white-color);
    font-size: 2.5rem;
}

.faq-layout-zigzag {
    padding: 5rem 0;
}
.zigzag-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}
.zigzag-item:last-child {
    margin-bottom: 0;
}
.zigzag-item:nth-child(even) {
    direction: rtl;
}
.zigzag-item:nth-child(even) * {
    direction: ltr;
}
.zigzag-image img {
    border-radius: var(--border-radius);
}
.zigzag-text {
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
}

.faq-layout-accordion {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.faq-contact-cta {
    padding: 5rem 0;
}

.faq-cta-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
}
.faq-cta-image { flex: 1; }
.faq-cta-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
}
.faq-cta-text { flex: 1.5; }

@media (max-width: 768px) {
    .faq-asymmetric-container {
        grid-template-columns: 1fr;
    }
    .flip-faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-parallax-divider {
        background-attachment: scroll;
    }
    .zigzag-item {
        grid-template-columns: 1fr;
        direction: ltr !important;
    }
    .zigzag-item * {
        direction: ltr !important;
    }
    .faq-cta-container {
        flex-direction: column;
        text-align: center;
    }
}
