:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97be5a;
    --accent-color: #f7a834;
    --dark-color: #1a1a1a;
    --light-gray: #f4f4f4;
    --medium-gray: #666;
    --white: #ffffff;
    --success-color: #2ecc71;
    --transition: 0.3s ease;
}

* {
    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(--dark-color);
    background: var(--white);
}

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

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

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

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

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

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 60px;
}

.split-left {
    flex: 1 1 300px;
    min-width: 280px;
}

.split-right {
    flex: 2 1 500px;
}

.container-legal {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-cookie {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.btn-cookie:hover {
    background: var(--accent-color);
}

.btn-cookie-alt {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-alt:hover {
    border-color: var(--white);
}

.main-nav {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.95rem;
}

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

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
}

.hero-split {
    padding: 80px 0;
    background: linear-gradient(135deg, #f4f9f4 0%, #e8f5e9 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1 1 450px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-visual {
    flex: 1 1 450px;
}

.hero-visual img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 15px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

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

.intro-section {
    padding: 100px 0;
}

.intro-section h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--dark-color);
    font-weight: 700;
}

.intro-section p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.visual-break {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.break-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.break-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.break-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 60px 40px;
}

.break-overlay h3 {
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
    max-width: 700px;
}

.services-highlight {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-header-split {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.section-header-split > div:first-child {
    flex: 1 1 300px;
}

.section-header-split > div:last-child {
    flex: 2 1 500px;
}

.section-header-split h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.section-header-split p {
    font-size: 1.1rem;
    color: var(--medium-gray);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1 1 320px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

.card-content {
    padding: 30px;
}

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

.card-content p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.split-feature {
    padding: 100px 0;
}

.feature-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.feature-grid.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1 1 450px;
}

.feature-image img {
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.feature-text {
    flex: 1 1 450px;
}

.feature-text h2 {
    font-size: 2.3rem;
    margin-bottom: 24px;
    color: var(--dark-color);
    font-weight: 700;
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-arrow:after {
    content: "→";
    transition: var(--transition);
}

.link-arrow:hover:after {
    transform: translateX(5px);
}

.stats-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

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

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--accent-color);
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

.testimonial-section {
    padding: 100px 0;
}

.testimonial {
    border-left: 4px solid var(--secondary-color);
    padding-left: 40px;
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--dark-color);
}

.testimonial cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 600;
}

.form-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.form-intro {
    flex: 1 1 350px;
}

.form-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.form-container {
    flex: 1 1 500px;
}

.main-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

.trust-section {
    padding: 80px 0;
    text-align: center;
}

.trust-section h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--dark-color);
    font-weight: 700;
}

.trust-section p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4,
.footer-col h5 {
    margin-bottom: 16px;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    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.7);
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.page-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f4f9f4 0%, #e8f5e9 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 800;
}

.page-hero p {
    font-size: 1.3rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

.about-split {
    padding: 100px 0;
}

.about-split h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--dark-color);
    font-weight: 700;
}

.about-split p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-section {
    padding: 100px 0;
    background: var(--light-gray);
}

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

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

.value-item {
    flex: 1 1 260px;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

.value-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.approach-section {
    padding: 100px 0;
}

.team-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.team-member {
    flex: 1 1 300px;
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.team-member p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.timeline-section {
    padding: 100px 0;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--dark-color);
    font-weight: 700;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--secondary-color);
}

.timeline-item {
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    min-width: 80px;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.timeline-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4620 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

.services-intro {
    padding: 80px 0;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-detailed {
    padding: 0 0 100px;
}

.service-detail {
    margin-bottom: 100px;
}

.service-header-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.service-info {
    flex: 1 1 300px;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 700;
}

.service-price {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

.service-description {
    flex: 1 1 400px;
}

.service-description p {
    font-size: 1.15rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.service-content-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 60px;
}

.service-content-split.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1 1 450px;
}

.service-image img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.service-details {
    flex: 1 1 450px;
}

.service-details h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

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

.service-details ul li {
    margin-bottom: 12px;
    color: var(--medium-gray);
    line-height: 1.6;
}

.delivery-time {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: block;
}

.pricing-notes {
    padding: 80px 0;
    background: var(--light-gray);
}

.pricing-notes h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.pricing-notes p {
    font-size: 1.05rem;
    color: var(--medium-gray);
    margin-bottom: 16px;
    line-height: 1.7;
}

.process-section {
    padding: 100px 0;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--dark-color);
    font-weight: 700;
}

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

.process-step {
    flex: 1 1 280px;
    text-align: center;
    padding: 30px;
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

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

.process-step p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-section h2 {
    font-size: 2.3rem;
    color: var(--dark-color);
    font-weight: 700;
}

.faq-item {
    margin-bottom: 32px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.faq-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-card {
    flex: 1 1 280px;
    background: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
}

.contact-card h2 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.detail-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-item p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.detail-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-general {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-general h2 {
    font-size: 2.3rem;
    color: var(--dark-color);
    font-weight: 700;
}

.contact-general p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.email-large {
    font-size: 1.5rem !important;
    font-weight: 700;
}

.email-large a {
    color: var(--primary-color);
}

.response-section {
    padding: 80px 0;
}

.response-content h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--dark-color);
    font-weight: 700;
}

.response-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.response-step {
    flex: 1 1 220px;
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    line-height: 50px;
    margin-bottom: 16px;
}

.response-step p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.service-areas {
    padding: 80px 0;
}

.service-areas h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 24px;
    color: var(--dark-color);
    font-weight: 700;
}

.service-areas p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4620 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    text-align: center;
    color: var(--white);
    padding: 40px;
}

.map-overlay h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.map-overlay p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.thanks-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f4f9f4 0%, #e8f5e9 100%);
}

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

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

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

.thanks-message {
    font-size: 1.3rem;
    color: var(--medium-gray);
    margin-bottom: 50px;
}

.service-confirmation {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-confirmation h3 {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-color);
    font-weight: 700;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.step-item {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.step-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-item p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

.confirmation-note {
    background: #fff8e6;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 40px;
}

.confirmation-note p {
    color: var(--medium-gray);
    margin: 0;
}

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

.additional-resources {
    padding: 80px 0;
}

.additional-resources h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
    color: var(--dark-color);
    font-weight: 700;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.resource-card {
    flex: 1 1 300px;
    background: var(--light-gray);
    padding: 35px;
    border-radius: 10px;
}

.resource-card h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 700;
}

.resource-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.resource-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-page {
    padding: 80px 0;
    background: var(--white);
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 800;
}

.last-updated {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 600;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--medium-gray);
}

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

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--medium-gray);
}

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

.legal-content a:hover {
    color: var(--secondary-color);
}

.contact-box {
    background: var(--light-gray);
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.contact-box p {
    margin-bottom: 8px;
}

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        gap: 20px;
        align-items: flex-start;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-text p {
        font-size: 1.05rem;
    }

    .section-header-split,
    .container-split {
        gap: 30px;
    }

    .intro-section h2,
    .section-header-split h2,
    .page-hero h1,
    .about-split h2 {
        font-size: 2rem;
    }

    .break-overlay h3 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2.3rem;
    }

    .testimonial {
        font-size: 1.1rem;
        padding-left: 24px;
    }

    .service-detail {
        margin-bottom: 60px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }

    .cta-content h2,
    .thanks-content h1 {
        font-size: 2rem;
    }

    .legal-page h1 {
        font-size: 2.2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .thanks-actions {
        flex-direction: column;
        width: 100%;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}
