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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f8f9fa;
}

.ad-disclosure {
    background-color: #e8f4f8;
    color: #2c5f7d;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-floating {
    position: fixed;
    top: 3rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2C5F2D;
    margin-bottom: 0.5rem;
}

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

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-links a:hover {
    color: #2C5F2D;
}

.hero-asymmetric {
    display: flex;
    min-height: 90vh;
    padding: 5rem 2rem 3rem 3rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.hero-content-offset {
    max-width: 600px;
    padding-top: 6rem;
    padding-left: 3rem;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    background-color: #2C5F2D;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #234d24;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 45, 0.3);
}

.hero-image-overlap {
    position: absolute;
    right: -5rem;
    top: 15%;
    width: 55%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(-3deg);
    object-fit: cover;
    background-color: #e2e8f0;
}

.intro-offset {
    display: flex;
    gap: 4rem;
    padding: 6rem 3rem;
    margin-left: 8%;
    align-items: center;
}

.intro-text-block {
    flex: 1.5;
    max-width: 650px;
}

.intro-text-block h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-text-block p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

.intro-visual-card {
    flex: 1;
    transform: translateY(-3rem);
}

.intro-visual-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e2e8f0;
}

.services-asymmetric {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.services-header-offset {
    max-width: 700px;
    margin-left: 15%;
    margin-bottom: 4rem;
}

.services-header-offset h2 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.services-header-offset p {
    font-size: 1.125rem;
    color: #718096;
}

.services-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateX(1rem);
}

.service-card-1 {
    margin-left: 5%;
    max-width: 90%;
}

.service-card-2 {
    margin-left: 12%;
    max-width: 85%;
}

.service-card-3 {
    margin-left: 3%;
    max-width: 88%;
}

.service-card-4 {
    margin-left: 10%;
    max-width: 87%;
}

.service-icon {
    width: 200px;
    flex-shrink: 0;
}

.service-icon img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    background-color: #e2e8f0;
}

.service-card h3 {
    font-size: 1.75rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    background: #e8f4f8;
    color: #2c5f7d;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2C5F2D;
    margin-bottom: 1.5rem;
}

.service-select {
    background-color: #2C5F2D;
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.form-section-offset {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2C5F2D 0%, #1a3d1b 100%);
}

.form-container-irregular {
    max-width: 800px;
    margin-left: 10%;
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-intro {
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.form-intro p {
    font-size: 1.125rem;
    color: #718096;
}

.contact-form-asymmetric .form-group {
    margin-bottom: 1.75rem;
}

.contact-form-asymmetric label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form-asymmetric input,
.contact-form-asymmetric textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form-asymmetric input:focus,
.contact-form-asymmetric textarea:focus {
    outline: none;
    border-color: #2C5F2D;
}

.form-row-irregular {
    display: flex;
    gap: 1.5rem;
}

.form-submit {
    background-color: #2C5F2D;
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

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

.trust-section-irregular {
    display: flex;
    gap: 3rem;
    padding: 6rem 3rem;
    align-items: center;
    background-color: #f8f9fa;
}

.trust-content-offset {
    flex: 1;
    max-width: 550px;
    margin-left: 8%;
}

.trust-content-offset h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.25rem;
}

.trust-content-offset p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

.trust-image-overlap {
    flex: 1;
    transform: translateY(2rem);
}

.trust-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e2e8f0;
}

.benefits-stacked {
    padding: 5rem 2rem;
    background: white;
}

.benefits-stacked h2 {
    font-size: 3rem;
    text-align: center;
    color: #1a202c;
    margin-bottom: 4rem;
}

.benefit-block {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-left {
    padding-left: 5%;
}

.benefit-right {
    padding-right: 5%;
    flex-direction: row-reverse;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 2rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.benefit-text p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

.benefit-visual {
    flex: 1;
}

.benefit-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e2e8f0;
}

.footer-asymmetric {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 4rem 2rem 2rem;
}

.footer-content-irregular {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
}

.footer-block {
    flex: 1;
    min-width: 250px;
}

.footer-block h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.footer-block p {
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-block a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-block a:hover {
    color: #2C5F2D;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 32, 44, 0.98);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    line-height: 1.6;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
    cursor: pointer;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #2C5F2D;
    color: white;
}

.cookie-accept:hover {
    background-color: #234d24;
}

.cookie-reject {
    background-color: #4a5568;
    color: white;
}

.cookie-reject:hover {
    background-color: #2d3748;
}

.page-hero-offset {
    padding: 8rem 3rem 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    margin-left: 10%;
}

.page-hero-offset h1 {
    font-size: 3.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.page-hero-offset p {
    font-size: 1.25rem;
    color: #4a5568;
}

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

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: flex-start;
}

.service-detail-1 {
    margin-left: 5%;
}

.service-detail-2 {
    margin-left: 8%;
    flex-direction: row-reverse;
}

.service-detail-3 {
    margin-left: 3%;
}

.service-detail-4 {
    margin-left: 10%;
    flex-direction: row-reverse;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e2e8f0;
}

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

.service-detail-content h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.service-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2C5F2D;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    color: #2C5F2D;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    line-height: 1.7;
}

.service-detail-cta {
    display: inline-block;
    background-color: #2C5F2D;
    color: white;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s;
    cursor: pointer;
}

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

.additional-services-offset {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.additional-services-offset h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 3rem;
    margin-left: 10%;
}

.additional-grid-irregular {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.additional-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.additional-card:nth-child(1) {
    transform: translateY(-1rem);
}

.additional-card:nth-child(2) {
    transform: translateY(1rem);
}

.additional-card:nth-child(3) {
    transform: translateY(-0.5rem);
}

.additional-card h3 {
    font-size: 1.5rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.additional-card p {
    color: #4a5568;
    line-height: 1.7;
}

.additional-price {
    font-weight: 700;
    color: #2C5F2D;
    margin-top: 1rem;
    font-size: 1.125rem;
}

.about-hero-irregular {
    padding: 8rem 3rem 4rem;
    background: linear-gradient(135deg, #2C5F2D 0%, #1a3d1b 100%);
    margin-left: 15%;
    border-radius: 0 0 50px 0;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-story-offset {
    display: flex;
    gap: 3rem;
    padding: 6rem 3rem;
    align-items: center;
}

.story-text-block {
    flex: 1.3;
    margin-left: 8%;
}

.story-text-block h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.story-text-block p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.story-image-overlap {
    flex: 1;
    transform: translateY(-2rem);
}

.story-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e2e8f0;
}

.mission-asymmetric {
    padding: 5rem 3rem;
    background-color: #f8f9fa;
}

.mission-content-irregular {
    max-width: 800px;
    margin-left: 12%;
}

.mission-content-irregular h2 {
    font-size: 2.75rem;
    color: #2C5F2D;
    margin-bottom: 1.5rem;
}

.mission-content-irregular p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.values-stacked {
    padding: 5rem 2rem;
    background: white;
}

.values-stacked h2 {
    font-size: 3rem;
    text-align: center;
    color: #1a202c;
    margin-bottom: 4rem;
}

.value-block {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.value-left {
    padding-left: 6%;
}

.value-right {
    padding-right: 6%;
    flex-direction: row-reverse;
}

.value-content {
    flex: 1;
}

.value-content h3 {
    font-size: 2rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.value-content p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

.value-visual {
    flex: 1;
}

.value-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e2e8f0;
}

.approach-offset {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.approach-offset h2 {
    font-size: 2.75rem;
    color: #1a202c;
    margin-bottom: 3rem;
    margin-left: 10%;
}

.approach-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.approach-card:nth-child(1) {
    transform: translateY(-1.5rem);
}

.approach-card:nth-child(2) {
    transform: translateY(1rem);
}

.approach-card:nth-child(3) {
    transform: translateY(-0.5rem);
}

.approach-card:nth-child(4) {
    transform: translateY(0.75rem);
}

.approach-card h3 {
    font-size: 1.5rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.approach-card p {
    color: #4a5568;
    line-height: 1.7;
}

.team-irregular {
    padding: 5rem 2rem;
    background: white;
}

.team-intro-offset {
    max-width: 750px;
    margin-left: 15%;
}

.team-intro-offset h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.25rem;
}

.team-intro-offset p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

.why-us-asymmetric {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.why-us-asymmetric h2 {
    font-size: 3rem;
    color: #1a202c;
    text-align: center;
    margin-bottom: 4rem;
}

.why-us-content-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-point {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.why-us-point:nth-child(1) {
    margin-left: 5%;
    transform: translateY(-1rem);
}

.why-us-point:nth-child(2) {
    transform: translateY(1.5rem);
}

.why-us-point:nth-child(3) {
    margin-right: 5%;
    transform: translateY(-0.5rem);
}

.why-us-point:nth-child(4) {
    margin-left: 8%;
    transform: translateY(0.75rem);
}

.why-us-point h3 {
    font-size: 1.5rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.why-us-point p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-hero-offset {
    padding: 8rem 3rem 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    margin-left: 8%;
}

.contact-hero-offset h1 {
    font-size: 3.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.contact-hero-offset p {
    font-size: 1.25rem;
    color: #4a5568;
}

.contact-content-asymmetric {
    padding: 5rem 2rem;
}

.contact-info-irregular {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
    align-items: center;
}

.contact-block-offset {
    flex: 1;
    margin-left: 8%;
}

.contact-block-offset h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.25rem;
    color: #2C5F2D;
    margin-bottom: 0.5rem;
}

.contact-detail p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-visual-overlap {
    flex: 1;
    transform: translateY(-2rem);
}

.contact-visual-overlap img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e2e8f0;
}

.contact-approach {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    border-radius: 20px;
}

.contact-approach h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 3rem;
    text-align: center;
}

.approach-points-irregular {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.approach-point {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

.approach-point:nth-child(1) {
    transform: translateY(-1rem);
}

.approach-point:nth-child(2) {
    transform: translateY(1rem);
}

.approach-point:nth-child(3) {
    transform: translateY(-0.5rem);
}

.approach-point h3 {
    font-size: 1.5rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.approach-point p {
    color: #4a5568;
    line-height: 1.7;
}

.faq-offset {
    padding: 5rem 2rem;
    background: white;
}

.faq-offset h2 {
    font-size: 2.75rem;
    color: #1a202c;
    margin-bottom: 3rem;
    margin-left: 10%;
}

.faq-list-irregular {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.faq-item:nth-child(odd) {
    margin-left: 5%;
}

.faq-item:nth-child(even) {
    margin-right: 5%;
}

.faq-item h3 {
    font-size: 1.375rem;
    color: #2C5F2D;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

.thanks-container-irregular {
    display: flex;
    gap: 4rem;
    padding: 6rem 3rem;
    min-height: 80vh;
    align-items: center;
}

.thanks-content-offset {
    flex: 1.3;
    margin-left: 8%;
    max-width: 700px;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content-offset h1 {
    font-size: 3rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.thanks-main-text {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.service-confirmation-box {
    background: #e8f4f8;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    display: none;
}

.service-confirmation-box.show {
    display: block;
}

.thanks-next-steps {
    margin: 3rem 0;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 2rem;
}

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

.next-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2C5F2D;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    color: #2C5F2D;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #4a5568;
    line-height: 1.7;
}

.thanks-cta-section {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid #e2e8f0;
}

.thanks-cta-section p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.thanks-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.thanks-link {
    display: inline-block;
    background-color: #2C5F2D;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

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

.thanks-visual-overlap {
    flex: 1;
    transform: translateY(2rem);
}

.thanks-visual-overlap img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e2e8f0;
}

.legal-page-container {
    padding: 6rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-size: 2.75rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.legal-update {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: #2C5F2D;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.375rem;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content h4 {
    font-size: 1.125rem;
    color: #4a5568;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-content li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.no-link {
    color: #4a5568;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
    background-color: #f8f9fa;
    color: #2d3748;
    font-weight: 600;
}

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 1024px) {
    .nav-floating {
        top: 2rem;
        right: 1rem;
        padding: 1rem;
    }

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

    .hero-image-overlap {
        right: -10rem;
        width: 60%;
    }

    .intro-offset {
        flex-direction: column;
        margin-left: 0;
    }

    .services-header-offset {
        margin-left: 5%;
    }

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

    .benefit-block,
    .value-block {
        flex-direction: column;
    }

    .trust-section-irregular {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 4rem 1.5rem 2rem;
    }

    .hero-content-offset {
        padding-left: 0;
        padding-top: 2rem;
    }

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

    .hero-image-overlap {
        position: relative;
        right: 0;
        width: 100%;
        margin-top: 2rem;
    }

    .service-card {
        margin-left: 0 !important;
        max-width: 100% !important;
    }

    .form-row-irregular {
        flex-direction: column;
    }

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

    .thanks-container-irregular {
        flex-direction: column;
    }

    .contact-info-irregular {
        flex-direction: column;
    }
}
