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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #1a3a52;
    --accent-color: #e17055;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dfe6e9;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    display: flex;
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #d35f48;
}

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

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

.header-asymmetric {
    position: relative;
    padding: 1rem 2rem;
}

.ad-disclosure {
    background-color: var(--bg-light);
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-offset {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    transform: translateY(-5px);
}

.nav-items-scattered {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-items-scattered li {
    transform: translateY(calc(var(--index, 0) * 3px));
}

.nav-items-scattered li:nth-child(1) { --index: 0; }
.nav-items-scattered li:nth-child(2) { --index: 1; }
.nav-items-scattered li:nth-child(3) { --index: -1; }
.nav-items-scattered li:nth-child(4) { --index: 2; }

.nav-items-scattered a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-items-scattered a:hover {
    color: var(--accent-color);
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.hero-content-offset {
    flex: 1;
    padding-left: 3rem;
    transform: translateY(-40px);
}

.hero-title-irregular {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transform: rotate(-1deg);
}

.hero-text-skewed {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-hero-offset {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    transform: translateX(20px) rotate(-1deg);
    transition: all 0.3s ease;
}

.cta-hero-offset:hover {
    background-color: var(--secondary-color);
    transform: translateX(20px) rotate(-1deg) scale(1.05);
}

.hero-image-diagonal {
    flex: 1;
    position: relative;
    transform: rotate(2deg) translateY(30px);
    background-color: var(--bg-light);
}

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

.intro-offset-block {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.intro-text-irregular {
    flex: 1.2;
    padding-right: 2rem;
    transform: translateX(-30px);
}

.intro-text-irregular h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transform: rotate(-1deg);
}

.intro-text-irregular p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.intro-visual-skew {
    flex: 1;
    transform: rotate(-3deg) translateY(-20px);
    background-color: var(--bg-light);
}

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

.services-staggered {
    max-width: 1400px;
    margin: 10rem auto;
    padding: 0 2rem;
}

.section-title-offset {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 5rem;
    transform: translateX(50px) rotate(-1deg);
}

.service-card-offset-1,
.service-card-offset-2,
.service-card-offset-3,
.service-card-offset-4,
.service-card-offset-5 {
    display: flex;
    gap: 3rem;
    margin-bottom: 6rem;
    align-items: center;
    background-color: var(--bg-white);
}

.service-card-offset-1 {
    transform: translateX(60px);
}

.service-card-offset-2 {
    transform: translateX(-40px);
    flex-direction: row-reverse;
}

.service-card-offset-3 {
    transform: translateX(80px) rotate(1deg);
}

.service-card-offset-4 {
    transform: translateX(-60px) rotate(-1deg);
    flex-direction: row-reverse;
}

.service-card-offset-5 {
    transform: translateX(40px);
}

.service-image-overlap {
    flex: 1;
    position: relative;
    background-color: var(--bg-light);
}

.service-image-overlap img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.service-content-irregular {
    flex: 1;
    padding: 2rem;
}

.service-content-irregular h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.price-tag-skewed {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transform: rotate(-2deg);
}

.btn-select-service {
    padding: 0.875rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
    transform: translateX(5px);
}

.trust-block-irregular {
    max-width: 1400px;
    margin: 10rem auto;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
    display: flex;
    gap: 4rem;
    transform: rotate(-1deg);
}

.trust-content-offset {
    flex: 1;
    padding: 2rem;
}

.trust-content-offset h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

.stats-scattered {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
}

.stat-item-1,
.stat-item-2,
.stat-item-3 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background-color: var(--bg-white);
}

.stat-item-1 {
    transform: translateX(40px) rotate(2deg);
}

.stat-item-2 {
    transform: translateX(-30px) rotate(-1deg);
}

.stat-item-3 {
    transform: translateX(20px) rotate(1deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
}

.form-section-asymmetric {
    max-width: 1400px;
    margin: 10rem auto;
    padding: 0 2rem;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--bg-light);
    transform: rotate(-1deg) translateX(-30px);
}

.form-container-offset h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.form-container-offset p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.form-group-offset-1,
.form-group-offset-2,
.form-group-offset-3,
.form-group-offset-4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-offset-1 {
    transform: translateX(10px);
}

.form-group-offset-2 {
    transform: translateX(-15px);
}

.form-group-offset-3 {
    transform: translateX(20px);
}

.form-group-offset-4 {
    transform: translateX(-10px);
}

.form-irregular label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-irregular input,
.form-irregular select,
.form-irregular textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--bg-white);
}

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

.btn-submit-offset {
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transform: translateX(30px) rotate(-1deg);
    transition: all 0.3s ease;
}

.btn-submit-offset:hover {
    background-color: var(--secondary-color);
    transform: translateX(30px) rotate(-1deg) scale(1.05);
}

.disclaimer-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

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

.footer-asymmetric {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
    margin-top: 8rem;
}

.footer-content-scattered {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-block-1,
.footer-block-2,
.footer-block-3 {
    flex: 1;
}

.footer-block-1 {
    transform: translateY(-10px);
}

.footer-block-2 {
    transform: translateY(10px);
}

.footer-block-3 {
    transform: translateY(-5px);
}

.footer-asymmetric h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-asymmetric p {
    color: #b2bec3;
}

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

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

.footer-asymmetric a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-asymmetric a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #b2bec3;
}

.page-hero-offset {
    max-width: 1400px;
    margin: 4rem auto 6rem;
    padding: 0 2rem;
    transform: translateX(40px);
}

.page-title-irregular {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transform: rotate(-1deg);
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

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

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

.service-detail-card-1 {
    transform: translateX(60px);
}

.service-detail-card-2 {
    transform: translateX(-40px);
}

.service-detail-card-3 {
    transform: translateX(80px) rotate(1deg);
}

.service-detail-card-4 {
    transform: translateX(-60px) rotate(-1deg);
}

.service-detail-card-5 {
    transform: translateX(40px);
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    padding: 2rem 0;
}

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

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

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.price-display {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transform: rotate(-2deg);
}

.cta-section-offset {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--bg-light);
    transform: rotate(-1deg);
}

.cta-section-offset h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-section-offset p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.about-hero-diagonal {
    display: flex;
    min-height: 70vh;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.about-hero-content {
    flex: 1;
    transform: translateY(-20px) translateX(30px);
}

.about-hero-content h1 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transform: rotate(-1deg);
}

.about-hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-hero-image {
    flex: 1;
    transform: rotate(2deg) translateY(20px);
    background-color: var(--bg-light);
}

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

.story-section-irregular {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.story-block-1 {
    flex: 1;
    min-width: 300px;
    transform: translateX(-30px);
}

.story-block-1 h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

.story-block-2 {
    flex: 1;
    min-width: 300px;
    transform: rotate(-2deg) translateY(40px);
    background-color: var(--bg-light);
}

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

.story-block-3 {
    flex: 1 1 100%;
    padding: 2rem;
    background-color: var(--bg-light);
    transform: translateX(50px) rotate(1deg);
}

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

.values-scattered {
    max-width: 1400px;
    margin: 10rem auto;
    padding: 0 2rem;
}

.values-title-offset {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 4rem;
    transform: translateX(60px) rotate(-1deg);
}

.value-card-1,
.value-card-2,
.value-card-3 {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--bg-light);
}

.value-card-1 {
    transform: translateX(40px);
    max-width: 600px;
}

.value-card-2 {
    transform: translateX(-60px) rotate(1deg);
    max-width: 650px;
    margin-left: auto;
}

.value-card-3 {
    transform: translateX(80px) rotate(-1deg);
    max-width: 550px;
}

.value-card-1 h3,
.value-card-2 h3,
.value-card-3 h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card-1 p,
.value-card-2 p,
.value-card-3 p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section-offset {
    max-width: 1400px;
    margin: 10rem auto;
    padding: 0 2rem;
}

.team-section-offset h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transform: translateX(40px);
}

.team-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    transform: translateX(60px);
}

.team-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.team-member-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
}

.team-member-card:nth-child(1) {
    transform: translateX(30px) translateY(-20px);
}

.team-member-card:nth-child(2) {
    transform: translateX(-40px) translateY(10px);
}

.team-member-card:nth-child(3) {
    transform: translateX(50px) translateY(30px);
}

.team-member-card:nth-child(4) {
    transform: translateX(-30px) translateY(-10px);
}

.member-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-role {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.member-info p {
    color: var(--text-light);
    line-height: 1.6;
}

.references-section {
    max-width: 1400px;
    margin: 10rem auto;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
    transform: rotate(-1deg);
}

.references-section h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.references-section > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.reference-list-staggered {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reference-item {
    padding: 2rem;
    background-color: var(--bg-white);
}

.reference-item:nth-child(1) {
    transform: translateX(40px);
}

.reference-item:nth-child(2) {
    transform: translateX(-30px);
}

.reference-item:nth-child(3) {
    transform: translateX(60px);
}

.reference-quote {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.reference-author {
    font-weight: 600;
    color: var(--primary-color);
}

.cta-about-section {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-about-section h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-about-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-alt {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.cta-button-alt:hover {
    background-color: var(--secondary-color);
    transform: rotate(-1deg) scale(1.05);
}

.contact-hero-offset {
    max-width: 1400px;
    margin: 4rem auto 6rem;
    padding: 0 2rem;
    transform: translateX(-40px);
}

.contact-hero-offset h1 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transform: rotate(1deg);
}

.contact-hero-offset p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.contact-content-asymmetric {
    max-width: 1400px;
    margin: 0 auto 8rem;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info-block {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-section-1 h2,
.info-section-2 h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.contact-detail h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: var(--text-light);
    line-height: 1.7;
}

.note-text {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.process-step {
    margin-bottom: 2rem;
}

.process-step h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-visual-offset {
    flex: 1;
    transform: rotate(-2deg) translateY(40px);
    background-color: var(--bg-light);
}

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

.faq-section-staggered {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 2rem;
}

.faq-section-staggered h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    transform: translateX(40px);
}

.faq-item-1,
.faq-item-2,
.faq-item-3,
.faq-item-4,
.faq-item-5 {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: var(--bg-light);
}

.faq-item-1 {
    transform: translateX(50px);
}

.faq-item-2 {
    transform: translateX(-40px);
}

.faq-item-3 {
    transform: translateX(70px);
}

.faq-item-4 {
    transform: translateX(-30px);
}

.faq-item-5 {
    transform: translateX(60px);
}

.faq-item-1 h3,
.faq-item-2 h3,
.faq-item-3 h3,
.faq-item-4 h3,
.faq-item-5 h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.faq-item-1 p,
.faq-item-2 p,
.faq-item-3 p,
.faq-item-4 p,
.faq-item-5 p {
    color: var(--text-light);
    line-height: 1.7;
}

.final-cta-contact {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: rotate(-1deg);
}

.final-cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.email-display {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background-color: var(--bg-white);
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
}

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

.thanks-content {
    flex: 1.2;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transform: rotate(-1deg);
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-details {
    padding: 1.5rem;
    background-color: var(--bg-light);
    margin-bottom: 2rem;
    transform: translateX(20px);
}

.next-steps {
    margin-bottom: 2rem;
}

.next-steps h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.next-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

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

.btn-primary-large,
.btn-secondary-large {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.thanks-visual {
    flex: 1;
    transform: rotate(2deg) translateY(20px);
    background-color: var(--bg-light);
}

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

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

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.legal-page h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

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

.legal-page a:hover {
    color: var(--accent-color);
}

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

@media (max-width: 1024px) {
    .hero-asymmetric,
    .intro-offset-block,
    .about-hero-diagonal,
    .contact-content-asymmetric,
    .thanks-section {
        flex-direction: column;
    }

    .service-card-offset-1,
    .service-card-offset-2,
    .service-card-offset-3,
    .service-card-offset-4,
    .service-card-offset-5,
    .service-detail-card-1,
    .service-detail-card-2,
    .service-detail-card-3,
    .service-detail-card-4,
    .service-detail-card-5 {
        flex-direction: column;
        transform: none;
    }

    .hero-title-irregular {
        font-size: 3rem;
    }

    .nav-items-scattered {
        gap: 1.5rem;
    }

    .footer-content-scattered {
        flex-direction: column;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .hero-title-irregular {
        font-size: 2.5rem;
    }

    .nav-items-scattered {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title-offset,
    .page-title-irregular {
        font-size: 2.5rem;
    }

    .service-image-overlap img {
        height: 250px;
    }

    .team-grid-irregular {
        flex-direction: column;
    }
}