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

:root {
    --primary-color: #2d5016;
    --secondary-color: #5a8f3a;
    --accent-color: #a8c686;
    --dark-bg: #1a1a1a;
    --light-bg: #f7f9f5;
    --text-dark: #2a2a2a;
    --text-light: #ffffff;
    --border-color: #d4e4c8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
}

.ad-disclosure {
    background: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    padding: 8px;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    position: sticky;
    top: 36px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.hero-offset {
    min-height: 85vh;
    display: flex;
    align-items: stretch;
    position: relative;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-content-left {
    width: 45%;
    padding: 120px 8% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light-bg);
}

.hero-content-left h1 {
    font-size: 58px;
    line-height: 1.15;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-content-left p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
    max-width: 500px;
}

.hero-image-right {
    width: 55%;
    position: relative;
    background-color: var(--accent-color);
}

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

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 80, 22, 0.2);
}

.intro-asymmetric {
    padding: 100px 8%;
    background: #ffffff;
}

.intro-block-overlap {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-text {
    flex: 1.2;
    padding-right: 40px;
}

.intro-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.intro-visual {
    flex: 1;
    position: relative;
    background-color: var(--border-color);
}

.intro-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.value-cards-stagger {
    padding: 120px 8% 100px;
    background: var(--light-bg);
}

.value-cards-stagger h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 80px;
    color: var(--primary-color);
}

.cards-container {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.value-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 340px;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
}

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 60px;
}

.card-offset-3 {
    margin-top: 30px;
}

.value-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--accent-color);
}

.value-card h3 {
    padding: 30px 25px 15px;
    font-size: 24px;
    color: var(--primary-color);
}

.value-card p {
    padding: 0 25px 30px;
    color: #666;
    font-size: 16px;
}

.services-diagonal {
    padding: 120px 8%;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-bg) 100%);
}

.services-header-diagonal {
    text-align: center;
    margin-bottom: 70px;
}

.services-header-diagonal h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-header-diagonal p {
    font-size: 20px;
    color: #555;
}

.services-grid-irregular {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

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

.service-wide {
    grid-column: span 2;
}

.service-item h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-select {
    background: var(--secondary-color);
    color: var(--text-light);
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-select:hover {
    background: var(--primary-color);
    transform: scale(1.02);
}

.form-section-offset {
    display: flex;
    min-height: 700px;
    align-items: stretch;
}

.form-container {
    width: 50%;
    padding: 80px 6%;
    background: var(--primary-color);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.form-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-submit {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 16px 50px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.form-side-visual {
    width: 50%;
    background-color: var(--border-color);
}

.form-side-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-scattered {
    padding: 100px 8%;
    background: var(--light-bg);
}

.testimonials-scattered h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 80px;
    color: var(--primary-color);
}

.testimonials-container {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.testimonial {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    flex: 1;
}

.testimonial-pos-1 {
    margin-top: 0;
}

.testimonial-pos-2 {
    margin-top: 50px;
}

.testimonial-pos-3 {
    margin-top: 25px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.final-cta-asymmetric {
    padding: 120px 8%;
    background: linear-gradient(120deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--text-light);
}

.cta-content h2 {
    font-size: 52px;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    background: #ffffff;
    color: var(--primary-color);
    padding: 20px 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.footer-split {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 80px 8% 40px;
    display: flex;
    gap: 80px;
}

.footer-left {
    flex: 2;
}

.footer-center,
.footer-right {
    flex: 1;
}

.footer-brand {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-left p {
    margin-bottom: 15px;
    opacity: 0.8;
    line-height: 1.6;
}

.disclaimer-text {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 30px;
    max-width: 600px;
}

.footer-center h4,
.footer-right h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-center ul,
.footer-right ul {
    list-style: none;
}

.footer-center li,
.footer-right li {
    margin-bottom: 12px;
}

.footer-center a,
.footer-right a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-center a:hover,
.footer-right a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: var(--text-light);
    padding: 25px 5%;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.btn-reject {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-reject:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

.about-hero-diagonal {
    padding: 140px 8% 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 58px;
    margin-bottom: 25px;
}

.about-hero-content p {
    font-size: 24px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.story-section-overlap {
    padding: 100px 8%;
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.story-visual-left {
    flex: 1;
    background-color: var(--border-color);
}

.story-visual-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-text-right {
    flex: 1.3;
    padding-left: 40px;
}

.story-text-right h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.story-text-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.8;
}

.values-asymmetric {
    padding: 100px 8%;
    background: var(--light-bg);
}

.values-asymmetric h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-color);
}

.values-grid-offset {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-block {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    flex: 1;
}

.value-offset-1 {
    margin-top: 0;
}

.value-offset-2 {
    margin-top: 40px;
}

.value-offset-3 {
    margin-top: 20px;
}

.value-block h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-block p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.team-section-scattered {
    padding: 100px 8%;
}

.team-section-scattered h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.team-intro {
    text-align: center;
    font-size: 20px;
    color: #555;
    margin-bottom: 60px;
}

.team-visual {
    max-width: 1200px;
    margin: 0 auto 50px;
    background-color: var(--border-color);
}

.team-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.team-description {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    text-align: center;
}

.approach-section {
    padding: 100px 8%;
    background: var(--light-bg);
}

.approach-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-color);
}

.approach-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-item {
    background: #ffffff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.approach-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.approach-item h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.approach-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.cta-about {
    padding: 100px 8%;
    text-align: center;
    background: #ffffff;
}

.cta-about h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
}

.btn-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 18px 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 80, 22, 0.2);
}

.services-hero {
    padding: 140px 8% 80px;
    background: linear-gradient(120deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    text-align: center;
}

.services-hero h1 {
    font-size: 58px;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 22px;
    opacity: 0.95;
}

.services-detailed {
    padding: 80px 8%;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 60px;
    background: var(--light-bg);
    border-radius: 12px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-layout-2 {
    flex-direction: row-reverse;
    background: #ffffff;
}

.service-layout-4 {
    flex-direction: row-reverse;
    background: #ffffff;
}

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

.service-detail-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 25px;
}

.service-detail-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-detail-content li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.btn-service {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-service:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.service-detail-visual {
    flex: 1;
    background-color: var(--border-color);
}

.service-detail-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.services-cta-section {
    padding: 100px 8%;
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.services-cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.services-cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.contact-hero {
    padding: 140px 8% 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 58px;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 22px;
    opacity: 0.95;
}

.contact-content-asymmetric {
    padding: 100px 8%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

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

.contact-info-block h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.contact-item h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.email-display {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-note {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.contact-visual-offset {
    flex: 1;
    margin-top: 60px;
    background-color: var(--border-color);
}

.contact-visual-offset img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.contact-map-section {
    padding: 80px 8%;
    background: var(--light-bg);
    text-align: center;
}

.contact-map-section h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-map-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    background: #e0e0e0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(45, 80, 22, 0.9);
    color: var(--text-light);
    padding: 30px 50px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
}

.contact-cta {
    padding: 100px 8%;
    text-align: center;
}

.contact-cta h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
}

.thanks-hero {
    padding: 140px 8%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
}

.thanks-content {
    text-align: center;
    max-width: 800px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 40px;
}

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
}

.thanks-details {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    display: none;
}

.thanks-details p {
    margin: 0;
    font-size: 16px;
    color: #666;
}

.selected-service {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 10px;
}

.thanks-next-steps {
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.steps-container {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.step-item {
    flex: 1;
    max-width: 220px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item p {
    font-size: 15px;
    color: #555;
}

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

.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.thanks-additional-info {
    padding: 80px 8%;
    background: #ffffff;
}

.thanks-additional-info h2 {
    font-size: 38px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.thanks-additional-info > p {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.info-links {
    display: flex;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.info-link {
    flex: 1;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

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

.info-link h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.info-link p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.legal-content {
    padding: 140px 8% 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.legal-updated {
    font-size: 15px;
    color: #999;
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-content-left,
    .hero-image-right {
        width: 100%;
    }

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

    .cards-container,
    .testimonials-container {
        flex-direction: column;
    }

    .value-card {
        width: 100%;
        margin-top: 0 !important;
    }

    .services-grid-irregular {
        grid-template-columns: 1fr;
    }

    .service-large,
    .service-wide {
        grid-column: span 1;
    }

    .form-section-offset {
        flex-direction: column;
    }

    .form-container,
    .form-side-visual {
        width: 100%;
    }

    .story-section-overlap,
    .contact-content-asymmetric {
        flex-direction: column;
    }

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

    .service-detail {
        flex-direction: column !important;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 15px 5%;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

    .hero-content-left p {
        font-size: 18px;
    }

    .intro-block-overlap {
        flex-direction: column;
    }

    .approach-blocks {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

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

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

    .info-links {
        flex-direction: column;
    }
}