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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #28a745;
}

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

.header-main {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-area {
    flex: 0 0 auto;
}

.brand-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    flex: 1 1 auto;
    text-align: center;
}

.ad-label {
    display: inline-block;
    background-color: var(--bg-light);
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.nav-primary {
    display: flex;
    gap: 1.5rem;
    flex: 0 0 auto;
}

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

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

.hero-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
}

.hero-content-wrap {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1 1 400px;
    padding-right: 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-primary-hero {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
}

.btn-primary-hero:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.4);
}

.hero-image-offset {
    flex: 1 1 500px;
    position: relative;
    transform: translateX(2rem) translateY(-1rem);
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: var(--bg-light);
}

.trust-indicators-floating {
    max-width: 1400px;
    margin: -2rem auto 4rem;
    padding: 0 2rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.indicator-block {
    background-color: var(--bg-white);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 200px;
    transform: translateY(-1rem);
}

.indicator-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.indicator-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section-intro-offset {
    max-width: 700px;
    margin-bottom: 3rem;
    transform: translateX(3rem);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.services-container-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card-offset {
    flex: 1 1 calc(50% - 1rem);
    min-width: 320px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card-1 {
    transform: translateY(-1rem);
}

.service-card-2 {
    transform: translateY(1.5rem) translateX(1rem);
}

.service-card-3 {
    transform: translateY(-0.5rem) translateX(-1rem);
}

.service-card-4 {
    transform: translateY(2rem);
}

.service-card-5 {
    transform: translateY(-1.5rem) translateX(0.5rem);
}

.service-card-6 {
    transform: translateY(1rem) translateX(-0.5rem);
}

.service-card-offset:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-image-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background-color: var(--bg-light);
}

.service-card-offset:hover .service-image-wrap img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 1.25rem;
    font-weight: 700;
}

.process-section-overlap {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
}

.process-visual {
    flex: 1 1 500px;
    position: relative;
}

.process-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: var(--bg-light);
}

.process-content-card {
    flex: 1 1 400px;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(-2rem);
    position: relative;
    z-index: 2;
}

.process-content-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.process-steps {
    list-style-position: inside;
    padding-left: 1rem;
}

.process-steps li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.testimonials-stacked {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
}

.section-title-centered {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-style: italic;
}

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

.form-section-split {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

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

.form-intro-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.form-container-card {
    flex: 1 1 500px;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-input,
.form-select,
.form-textarea {
    padding: 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--bg-white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-form-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
}

.btn-form-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.4);
}

.why-choose-irregular {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.section-title-offset {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    transform: translateX(-1rem);
}

.features-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-box {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-box:nth-child(1) {
    transform: translateY(-1rem);
}

.feature-box:nth-child(2) {
    transform: translateY(1rem);
}

.feature-box:nth-child(3) {
    transform: translateY(-0.5rem);
}

.feature-box:nth-child(4) {
    transform: translateY(0.5rem);
}

.feature-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-box p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.disclaimer-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.disclaimer-content {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.disclaimer-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.disclaimer-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.footer-main {
    background-color: var(--text-dark);
    color: var(--bg-light);
    margin-top: 5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    background-color: #111827;
    text-align: center;
    padding: 1.5rem 2rem;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex: 0 0 auto;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.services-page-layout,
.about-page-layout,
.contact-page-layout,
.legal-page-layout,
.thanks-page-layout {
    min-height: 60vh;
}

.page-hero-compact {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-detailed-list {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.service-detail-visual {
    flex: 1 1 450px;
}

.service-detail-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: var(--bg-light);
}

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

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-detail-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.price-highlight {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.btn-service-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.85rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.service-guarantee-block {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2.5rem 2rem;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.service-guarantee-block h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-guarantee-block p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-hero-split {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-text-column {
    flex: 1 1 450px;
}

.about-text-column h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text-column p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-image-column {
    flex: 1 1 450px;
}

.about-image-column img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: var(--bg-light);
}

.values-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.story-section-overlap {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-content {
    flex: 1 1 450px;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.story-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: var(--bg-light);
}

.approach-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2.5rem 2rem;
    background-color: var(--bg-light);
    border-radius: 10px;
}

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

.approach-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.step-box {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.step-number {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.step-box p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.commitment-block {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.commitment-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.commitment-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-details-asymmetric {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info-primary {
    flex: 1 1 450px;
}

.contact-info-primary h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

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

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
}

.hours-table tr {
    border-bottom: 1px solid var(--border-color);
}

.hours-table td {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-light);
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-table td:last-child {
    text-align: right;
}

.contact-map-placeholder {
    flex: 1 1 450px;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
    min-height: 300px;
}

.map-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.map-info p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-additional-info {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-additional-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.tips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.tip-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.tip-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.tip-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-section-offset {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.faq-section-offset h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-contact-bottom {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

.cta-contact-bottom h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-contact-bottom p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-primary-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

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

.legal-content {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.legal-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.thanks-page-layout {
    min-height: 70vh;
}

.thanks-message-centered {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-message-centered h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.thanks-description {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
}

.service-confirmation h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.next-steps {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.next-steps h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.steps-list {
    list-style-position: inside;
    padding-left: 1rem;
}

.steps-list li {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-return-home,
.btn-view-services {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

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

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

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

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

.reminder-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.reminder-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.reminder-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.reminder-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.reminder-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-primary {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title,
    .page-title {
        font-size: 2rem;
    }

    .hero-image-offset {
        transform: none;
    }

    .section-intro-offset {
        transform: none;
    }

    .process-content-card {
        transform: none;
    }

    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4,
    .service-card-5,
    .service-card-6 {
        transform: none;
    }

    .feature-box:nth-child(1),
    .feature-box:nth-child(2),
    .feature-box:nth-child(3),
    .feature-box:nth-child(4) {
        transform: none;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}