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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #8b6f47;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --accent-color: #c17a3f;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: var(--bg-light);
    color: var(--text-light);
    text-align: center;
    padding: 8px 16px;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-color);
}

/* Navigation */
.main-nav {
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}

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

.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%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 640px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--secondary-color);
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #234d24;
    transform: translateY(-2px);
}

/* Intro Split Section */
.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 32px;
}

.intro-image {
    flex: 0 0 45%;
    background-color: var(--bg-light);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text {
    flex: 1;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 1.08rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Process Section */
.process-section {
    background-color: var(--bg-light);
    padding: 100px 32px;
}

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

.process-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 64px;
    color: var(--text-dark);
}

.process-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-left: 4px solid var(--primary-color);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.process-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.process-card p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Services Overview Section */
.services-overview {
    padding: 100px 32px;
    background-color: var(--bg-white);
}

.services-content {
    max-width: 1100px;
    margin: 0 auto;
}

.services-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.services-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 56px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    background-color: var(--bg-light);
    border-left: 5px solid var(--secondary-color);
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.service-item:hover {
    border-color: var(--primary-color);
    transform: translateX(4px);
}

.service-info {
    flex: 1;
    padding-right: 32px;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-info p {
    font-size: 1rem;
    color: var(--text-light);
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

/* Form Section */
.form-section {
    background-color: var(--bg-light);
    padding: 100px 32px;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    background-color: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-left {
    flex: 1;
    padding: 60px 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.form-left p {
    font-size: 1.08rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 1.05rem;
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.3rem;
}

.form-right {
    flex: 1;
    padding: 60px 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    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);
}

.btn-submit {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #234d24;
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    padding: 100px 32px;
    background-color: var(--bg-white);
}

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

.trust-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 64px;
    color: var(--text-dark);
}

.trust-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: var(--bg-light);
}

.trust-item h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 32px;
    background-color: var(--bg-light);
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 64px;
    color: var(--text-dark);
}

.testimonials-wrapper {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-top: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 32px;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: justify;
}

/* Footer */
.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 64px 32px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--bg-light);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 0.95rem;
    color: var(--bg-light);
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--bg-light);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px 32px;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10000;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-buttons {
    display: flex;
    gap: 16px;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-accept:hover {
    background-color: #234d24;
    transform: translateY(-2px);
}

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 32px;
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.header-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* About Split Section */
.about-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 32px;
    display: flex;
    gap: 60px;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.08rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    flex: 0 0 45%;
    background-color: var(--bg-light);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Values Section */
.values-section {
    background-color: var(--bg-light);
    padding: 100px 32px;
}

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

.values-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 64px;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-top: 4px solid var(--secondary-color);
}

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

.value-card p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Expertise Section */
.expertise-section {
    padding: 100px 32px;
    background-color: var(--bg-white);
}

.expertise-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.expertise-image {
    flex: 0 0 40%;
    background-color: var(--bg-light);
}

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.expertise-content p {
    font-size: 1.08rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.expertise-list li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.expertise-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Approach Section */
.approach-section {
    background-color: var(--bg-light);
    padding: 100px 32px;
}

.approach-container {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 64px;
    color: var(--text-dark);
}

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

.approach-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.approach-number {
    flex: 0 0 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
}

.approach-text {
    flex: 1;
}

.approach-text h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.approach-text p {
    font-size: 1.05rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 32px;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 36px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

/* Services Detailed Section */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 32px;
}

.service-detail-card {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.service-detail-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    margin: 32px 0;
}

.service-features h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-features ul {
    list-style: none;
}

.service-features ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 1rem;
    color: var(--text-light);
}

.service-features ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.service-price-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 28px;
    padding: 20px 28px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-image {
    flex: 0 0 45%;
    background-color: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

/* Contact Content Section */
.contact-content {
    padding: 80px 32px;
    background-color: var(--bg-white);
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.contact-info-block > p {
    font-size: 1.08rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-item .note {
    font-size: 0.95rem;
    margin-top: 8px;
    font-style: italic;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 32px;
    margin-top: 40px;
}

.contact-note h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-note p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.contact-note ul {
    list-style: none;
    margin-left: 0;
}

.contact-note ul li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    font-size: 1rem;
    color: var(--text-light);
}

.contact-note ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.contact-note a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-map-placeholder {
    flex: 0 0 45%;
    position: relative;
    background-color: var(--bg-light);
    min-height: 500px;
}

.contact-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);
    color: var(--bg-white);
    padding: 24px;
}

.map-overlay p {
    font-size: 1.05rem;
}

/* Service Areas Section */
.service-areas {
    background-color: var(--bg-light);
    padding: 80px 32px;
}

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

.areas-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.areas-container > p {
    font-size: 1.08rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
}

.areas-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.area-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 32px 28px;
    border-top: 3px solid var(--accent-color);
}

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

.area-card p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Thanks Section */
.thanks-section {
    padding: 100px 32px;
    background-color: var(--bg-white);
    text-align: center;
}

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

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

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 20px 28px;
    margin-bottom: 48px;
    border-left: 4px solid var(--primary-color);
}

.thanks-info p {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.thanks-next-steps {
    margin: 64px 0;
}

.thanks-next-steps h2 {
    font-size: 2.2rem;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.steps-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    text-align: left;
}

.step-item {
    flex: 1;
    min-width: 220px;
    padding: 32px 24px;
    background-color: var(--bg-light);
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

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

.step-item p {
    font-size: 1rem;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-primary:hover {
    background-color: #234d24;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

/* Additional Info Section */
.additional-info {
    background-color: var(--bg-light);
    padding: 80px 32px;
}

.info-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.info-container h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.info-container > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 48px;
}

.info-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 40px 32px;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-card p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Legal Content Section */
.legal-content {
    padding: 80px 32px;
    background-color: var(--bg-white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-container p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-container ul {
    list-style: disc;
    margin-left: 32px;
    margin-bottom: 20px;
}

.legal-container ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal-container a {
    color: var(--primary-color);
}

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

.cookie-table thead {
    background-color: var(--bg-light);
}

.cookie-table th {
    padding: 16px;
    text-align: left;
    font-size: 1.05rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 16px;
    font-size: 1rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .about-split,
    .expertise-split,
    .service-detail-card,
    .contact-split,
    .form-container-split {
        flex-direction: column;
    }

    .intro-image,
    .about-image,
    .expertise-image,
    .service-detail-image,
    .contact-map-placeholder {
        flex: 1;
        min-height: 400px;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 20px 32px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        padding: 16px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content,
    .intro-text,
    .form-left,
    .form-right {
        padding: 40px 32px;
    }

    .process-grid,
    .trust-grid,
    .testimonials-wrapper,
    .values-grid,
    .areas-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons button {
        flex: 1;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1,
    .header-content h1,
    .thanks-container h1 {
        font-size: 1.8rem;
    }

    .process-container h2,
    .trust-container h2,
    .testimonials-content h2,
    .values-container h2,
    .areas-container h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-info {
        padding-right: 0;
        margin-bottom: 16px;
    }
}
