:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1a3d1b;
    --secondary-color: #8b6f47;
    --accent-color: #c19a6b;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #fafafa;
    --bg-gray: #f4f4f4;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --error: #c62828;
    --success: #2e7d32;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background-color: var(--primary-dark);
}

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

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand a {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-menu li a {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    background-color: var(--bg-light);
    padding: 60px 30px;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    background-color: var(--primary-color);
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.trust-indicators {
    background-color: var(--white);
    padding: 60px 20px;
}

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

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

.stat-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.intro-split {
    display: flex;
    flex-direction: column;
}

.split-left-content,
.split-right-content {
    flex: 1;
    padding: 60px 30px;
}

.split-left-content {
    background-color: var(--white);
}

.split-right-content {
    background-color: var(--bg-light);
}

.split-left-img,
.split-right-img {
    flex: 1;
    min-height: 400px;
}

.split-left-img img,
.split-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-left-content h2,
.split-right-content h2 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.split-left-content p,
.split-right-content p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    margin-top: 16px;
}

.link-arrow::after {
    content: '\2192';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.link-arrow:hover::after {
    margin-left: 14px;
}

.services-highlight {
    background-color: var(--bg-gray);
    padding: 80px 20px;
}

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

.section-header-center h2 {
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-medium);
}

.services-grid-triple {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-price {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.service-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-medium);
    font-size: 15px;
}

.service-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.btn-service-select {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-service-select:hover {
    background-color: var(--primary-dark);
}

.testimonial-strip {
    background-color: var(--primary-color);
    padding: 80px 20px;
}

.testimonial-large {
    font-size: 22px;
    line-height: 1.6;
    color: var(--white);
    font-style: italic;
    text-align: center;
    position: relative;
    padding: 0 40px;
}

.testimonial-large cite {
    display: block;
    margin-top: 24px;
    font-style: normal;
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
}

.additional-services {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
}

.service-list-compact {
    margin: 30px 0;
}

.compact-service {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

.compact-service:last-child {
    border-bottom: none;
}

.compact-service h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.price-inline {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.compact-service p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.why-different {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.why-different h2 {
    font-size: 38px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: 700;
}

.difference-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.difference-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.difference-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.case-insight {
    background-color: var(--white);
    padding: 80px 20px;
}

.case-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.case-text,
.case-visual {
    flex: 1;
}

.case-label {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.case-text h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.case-text p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 18px;
}

.case-visual {
    min-height: 350px;
}

.case-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.cta-section-primary {
    background-color: var(--primary-dark);
    padding: 80px 20px;
}

.cta-box {
    text-align: center;
}

.cta-box h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-large {
    padding: 18px 48px;
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background-color: var(--bg-light);
    transform: scale(1.05);
}

.faq-section {
    background-color: var(--white);
    padding: 80px 20px;
}

.faq-section h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

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

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '\2212';
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px;
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    background-color: var(--bg-light);
}

.final-cta-split {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-gray);
    padding: 80px 20px;
}

.final-left,
.final-right {
    flex: 1;
}

.final-left h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.final-left p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

.final-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 30px;
}

.cta-final {
    padding: 18px 48px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

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

.modal.show {
    display: block;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.modal-content h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.page-hero {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-subtitle {
    font-size: 19px;
    line-height: 1.6;
    opacity: 0.95;
}

.services-detailed {
    padding: 60px 20px;
    background-color: var(--white);
}

.service-detail-card {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
}

.service-detail-card.featured-service {
    border: 3px solid var(--primary-color);
    position: relative;
}

.service-detail-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.service-detail-left h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-detail-price {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-detail-body h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 24px 0 12px;
    font-weight: 700;
}

.service-detail-body p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    margin: 16px 0;
}

.feature-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: var(--text-medium);
    font-size: 16px;
}

.feature-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.about-intro-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    background-color: var(--white);
}

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

.values-section h2 {
    font-size: 38px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 14px;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.team-approach {
    padding: 80px 20px;
    background-color: var(--white);
}

.approach-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.approach-visual,
.approach-text {
    flex: 1;
}

.approach-visual {
    min-height: 350px;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.approach-text h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.approach-text p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 18px;
}

.stats-showcase {
    background-color: var(--bg-gray);
    padding: 80px 20px;
}

.stats-showcase h2 {
    font-size: 36px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: 700;
}

.stats-large-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.stat-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
}

.approach-detail {
    background-color: var(--white);
    padding: 80px 20px;
}

.approach-detail h2 {
    font-size: 36px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: 700;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.step-item h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.step-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: 700;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-card cite {
    font-style: normal;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-main {
    padding: 60px 20px;
    background-color: var(--white);
}

.contact-split {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info,
.contact-form-area {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
}

.contact-note {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
}

.contact-note h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-note p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.contact-form-area h3 {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-form-area > p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.contact-form-direct {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.location-map {
    padding: 60px 20px;
    background-color: var(--bg-gray);
}

.location-map h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.location-map > p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.map-placeholder {
    position: relative;
    min-height: 400px;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 95, 45, 0.9);
    padding: 20px;
}

.map-overlay p {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.transport-info h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.transport-info ul {
    list-style: none;
}

.transport-info ul li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
}

.transport-info ul li:last-child {
    border-bottom: none;
}

.transport-info strong {
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-hero {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

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

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-subtitle {
    font-size: 19px;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

.service-selected {
    background-color: var(--white);
    padding: 20px;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.next-steps h3 {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-brief {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background-color: var(--white);
    padding: 20px;
    border-radius: 6px;
}

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-brief p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 40px 0;
    align-items: center;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.thanks-note {
    background-color: var(--white);
    padding: 24px;
    border-radius: 6px;
    margin-top: 40px;
    border-left: 4px solid var(--accent-color);
}

.thanks-note p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.thanks-resources {
    background-color: var(--white);
    padding: 60px 20px;
}

.thanks-resources h2 {
    font-size: 32px;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-resources > p {
    font-size: 16px;
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.resource-card {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.resource-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.resource-card h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.resource-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.legal-content {
    background-color: var(--white);
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.effective-date {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin: 40px 0 16px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 28px 0 12px;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin: 20px 0 10px;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0 16px 24px;
}

.legal-content li {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-box {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
    margin: 24px 0;
}

.contact-box p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table thead {
    background-color: var(--primary-color);
    color: var(--white);
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: 15px;
}

.cookie-table th {
    font-weight: 700;
}

.cookie-table td {
    color: var(--text-medium);
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .hero-split {
        flex-direction: row;
        min-height: 700px;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .intro-split,
    .additional-services {
        flex-direction: row;
    }

    .intro-split .split-right-img {
        order: 2;
    }

    .additional-services .split-left-img {
        order: 1;
    }

    .services-grid-triple {
        flex-direction: row;
    }

    .difference-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .difference-item {
        flex: 1 1 calc(50% - 15px);
    }

    .case-split {
        flex-direction: row;
    }

    .final-cta-split {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .final-right {
        padding-top: 0;
    }

    .footer-main {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .about-intro-split {
        flex-direction: row;
        gap: 60px;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 15px);
    }

    .approach-split {
        flex-direction: row;
    }

    .testimonials-grid {
        flex-direction: row;
    }

    .contact-split {
        flex-direction: row;
    }

    .thanks-actions {
        flex-direction: row;
    }

    .resource-links {
        flex-direction: row;
    }

    .service-detail-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .service-detail-right {
        flex-shrink: 0;
    }
}

@media (min-width: 1024px) {
    body {
        font-size: 17px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .section-header-center h2 {
        font-size: 44px;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 10px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li a {
        font-size: 18px;
        padding: 12px 0;
    }
}