.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E0DCCD;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.service-card__content {
    padding: 24px;
}

.service-card__title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 12px;
}

.service-card__text {
    font-family: var(--font-secondary);
    color: var(--near-black);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-green);
    transition: gap 0.3s ease;
}

.service-card__link:hover {
    gap: 12px;
}

.service-card--large {
    grid-column: span 2;
}

@media (max-width: 767px) {
    .service-card--large {
        grid-column: span 1;
    }
    
    .service-card__image {
        height: 180px;
    }
    
    .service-card__content {
        padding: 20px;
    }
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card__quote {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--near-black);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-card__author {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-green);
}

.testimonial-card__role {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--dark-brown);
    opacity: 0.8;
}

.team-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-card__image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-card__content {
    padding: 24px;
    text-align: center;
}

.team-card__name {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 4px;
}

.team-card__title {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.team-card__bio {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--near-black);
    line-height: 1.5;
}

@media (max-width: 767px) {
    .team-card__image {
        height: 240px;
    }
}

.accordion {
    border-radius: 12px;
    overflow: hidden;
}

.accordion__item {
    border-bottom: 1px solid #E0DCCD;
}

.accordion__item:last-child {
    border-bottom: none;
}

.accordion__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background-color: var(--white);
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-brown);
    text-align: left;
    transition: background-color 0.3s ease;
}

.accordion__header:hover {
    background-color: #f9f7f4;
}

.accordion__header:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: -2px;
}

.accordion__icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 16px;
}

.accordion__icon::before,
.accordion__icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary-green);
    transition: transform 0.3s ease;
}

.accordion__icon::before {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion__icon::after {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion__item.active .accordion__icon::before {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion__item.active .accordion__content {
    max-height: 500px;
}

.accordion__body {
    padding: 0 24px 20px;
    font-family: var(--font-secondary);
    color: var(--near-black);
    line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
    .accordion__content {
        transition: none;
    }
    .accordion__icon::before,
    .accordion__icon::after {
        transition: none;
    }
}

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

.form-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--near-black);
    background-color: var(--white);
    border: 2px solid #E0DCCD;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary-green);
}

.form-checkbox span {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--near-black);
}

.form-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 6px;
    display: none;
}

.form-group.error .form-input,
.form-group.error .form-textarea {
    border-color: #dc3545;
}

.form-group.error .form-error {
    display: block;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
}

.icon-box__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
}

.icon-box__icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-green);
}

.icon-box__title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 12px;
}

.icon-box__text {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--near-black);
    line-height: 1.6;
}

.process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 28px;
    top: 90px;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-green);
}

.process-step__number {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-green);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
}

.process-step__content {
    flex: 1;
}

.process-step__title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.process-step__text {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--near-black);
    line-height: 1.6;
}

@media (max-width: 767px) {
    .process-step {
        gap: 16px;
    }
    
    .process-step__number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
    
    .process-step:not(:last-child)::after {
        left: 23px;
        top: 76px;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.badge img {
    max-height: 40px;
    width: auto;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background-color: var(--white);
    border: 1px solid #E0DCCD;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.download-item:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-sm);
}

.download-item__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(74, 124, 89, 0.1);
    border-radius: 8px;
}

.download-item__icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-green);
}

.download-item__text {
    flex: 1;
}

.download-item__title {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-brown);
}

.download-item__meta {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    color: #666;
}

.download-item__link {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-green);
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding-top: 80px;
}

.hero-split__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: var(--cream);
}

.hero-split__title {
    font-size: 2.75rem;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--dark-brown);
}

.hero-split__subtitle {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    color: var(--near-black);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-split__image {
    position: relative;
    overflow: hidden;
}

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

@media (max-width: 1023px) {
    .hero-split {
        grid-template-columns: 1fr;
    }
    
    .hero-split__content {
        padding: 40px 24px;
    }
    
    .hero-split__image {
        height: 400px;
    }
    
    .hero-split__title {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .hero-split {
        padding-top: 68px;
    }
    
    .hero-split__content {
        padding: 32px 20px;
    }
    
    .hero-split__title {
        font-size: 1.75rem;
    }
    
    .hero-split__subtitle {
        font-size: 1rem;
    }
    
    .hero-split__image {
        height: 300px;
    }
}

.hero-full {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.9), rgba(110, 58, 46, 0.7));
}

.hero-full__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-full__title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-full__subtitle {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: 32px;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .hero-full {
        min-height: 70vh;
        padding: 100px 20px 60px;
    }
    
    .hero-full__title {
        font-size: 2rem;
    }
    
    .hero-full__subtitle {
        font-size: 1rem;
    }
}

.hero-center {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 60px;
    background-color: var(--cream);
}

.hero-center__content {
    max-width: 700px;
}

.hero-center__title {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 16px;
}

.hero-center__subtitle {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--near-black);
    line-height: 1.7;
}

@media (max-width: 767px) {
    .hero-center {
        padding: 100px 20px 48px;
        min-height: 50vh;
    }
    
    .hero-center__title {
        font-size: 1.75rem;
    }
    
    .hero-center__subtitle {
        font-size: 1rem;
    }
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-content--reverse {
    direction: rtl;
}

.split-content--reverse > * {
    direction: ltr;
}

.split-content__image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.split-content__content {
    padding: 20px 0;
}

.split-content__title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-brown);
}

.split-content__text {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    color: var(--near-black);
    line-height: 1.8;
    margin-bottom: 16px;
}

.split-content__list {
    list-style: none;
    margin: 24px 0;
}

.split-content__list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-family: var(--font-secondary);
    color: var(--near-black);
}

.split-content__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--primary-green);
    border-radius: 50%;
}

@media (max-width: 1023px) {
    .split-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .split-content--reverse {
        direction: ltr;
    }
    
    .split-content__image {
        order: -1;
    }
    
    .split-content__title {
        font-size: 1.75rem;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

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

@media (max-width: 1023px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

.cta-banner {
    padding: 80px 24px;
    text-align: center;
}

.cta-banner__title {
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 16px;
}

.cta-banner__text {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner--white .cta-banner__title {
    color: var(--white);
}

.cta-banner--white .cta-banner__text {
    color: var(--white);
}

@media (max-width: 767px) {
    .cta-banner {
        padding: 60px 20px;
    }
    
    .cta-banner__title {
        font-size: 1.5rem;
    }
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 767px) {
    .map-container {
        height: 350px;
    }
}
