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

:root {
    --primary-color: #2a5a7d;
    --secondary-color: #4a8fb8;
    --accent-color: #e8914a;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.nav-asymmetric {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 37px;
    z-index: 999;
}

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

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

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

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

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 80px 40px 80px 100px;
    background-color: var(--bg-light);
    position: relative;
}

.hero-content-left {
    max-width: 580px;
    z-index: 2;
    padding-right: 60px;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-content-left p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 38px;
    line-height: 1.6;
}

.hero-image-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 52%;
    height: 70%;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
    background-color: var(--bg-light);
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

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

.intro-overlap {
    padding: 120px 40px 80px 100px;
    display: flex;
    align-items: flex-start;
    gap: 80px;
    position: relative;
}

.overlap-block-1 {
    flex: 1;
    max-width: 600px;
    padding-top: 40px;
}

.overlap-block-1 h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.overlap-block-1 p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.overlap-block-2 {
    flex: 1;
    position: relative;
    top: -60px;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.overlap-block-2 img {
    width: 100%;
    height: auto;
    display: block;
}

.services-asymmetric {
    background-color: var(--bg-white);
    padding: 100px 40px 100px 100px;
}

.services-header-offset {
    max-width: 700px;
    margin-left: 120px;
    margin-bottom: 70px;
}

.services-header-offset h2 {
    font-size: 48px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 700;
}

.services-header-offset p {
    font-size: 19px;
    color: var(--text-light);
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 14px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 24px 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 24px 20px;
}

.select-service {
    margin: 0 24px 24px;
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #d17a35;
}

.card-offset-1 {
    width: calc(45% - 20px);
    margin-top: 0;
}

.card-offset-2 {
    width: calc(50% - 20px);
    margin-top: 80px;
}

.card-offset-3 {
    width: calc(48% - 20px);
    margin-top: -40px;
}

.card-offset-4 {
    width: calc(47% - 20px);
    margin-top: 60px;
}

.card-offset-5 {
    width: calc(52% - 20px);
    margin-top: 20px;
}

.story-section {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

.story-content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.story-content-narrow h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
}

.story-content-narrow p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.8;
}

.story-content-narrow img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 40px 0;
    background-color: var(--bg-white);
}

.benefits-split {
    display: flex;
    align-items: center;
    min-height: 600px;
}

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

.benefits-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.benefits-content {
    flex: 1;
    padding: 80px 100px 80px 80px;
}

.benefits-content h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--text-dark);
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 18px;
    padding-left: 32px;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 22px;
}

.form-section-offset {
    background-color: var(--bg-white);
    padding: 100px 40px 100px 150px;
}

.form-container {
    max-width: 650px;
    margin-left: 80px;
}

.form-container h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 700;
}

.form-container p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 36px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-form input,
.service-form select,
.service-form textarea {
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.footer-asymmetric {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 80px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-block {
    flex: 1;
}

.footer-block h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--bg-white);
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-block p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--bg-light);
}

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

.footer-block ul li {
    margin-bottom: 10px;
}

.footer-block ul li a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--bg-light);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px 40px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
}

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

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

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

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

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

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

.cookie-btn:hover {
    opacity: 0.85;
}

.about-hero-split {
    display: flex;
    align-items: center;
    min-height: 70vh;
    background-color: var(--bg-light);
}

.about-text {
    flex: 1;
    padding: 80px 80px 80px 100px;
}

.about-text h1 {
    font-size: 58px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 800;
}

.about-text p {
    font-size: 22px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-hero-image {
    flex: 1;
    height: 70vh;
    background-color: var(--bg-white);
}

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

.story-offset {
    padding: 100px 40px 100px 100px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-block-left {
    flex: 1;
    max-width: 600px;
}

.story-block-left h2 {
    font-size: 42px;
    margin-bottom: 26px;
    color: var(--text-dark);
    font-weight: 700;
}

.story-block-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 22px;
    line-height: 1.8;
}

.story-image-right {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.story-image-right img {
    width: 100%;
    height: auto;
}

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

.values-asymmetric h2 {
    font-size: 48px;
    margin-bottom: 60px;
    margin-left: 80px;
    color: var(--text-dark);
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.value-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.value-1 {
    width: calc(45% - 20px);
    margin-top: 0;
}

.value-2 {
    width: calc(48% - 20px);
    margin-top: 60px;
}

.value-3 {
    width: calc(50% - 20px);
    margin-top: -40px;
}

.value-4 {
    width: calc(43% - 20px);
    margin-top: 40px;
}

.team-overlap {
    padding: 100px 100px 100px 150px;
    background-color: var(--bg-white);
}

.team-content {
    max-width: 800px;
}

.team-content h2 {
    font-size: 44px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.team-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.approach-section {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
}

.approach-left {
    flex: 1;
    background-color: var(--bg-white);
}

.approach-left img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.approach-right {
    flex: 1;
    padding: 80px 100px 80px 80px;
}

.approach-right h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.approach-right p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-about {
    background-color: var(--primary-color);
    padding: 100px 40px;
}

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

.cta-content-center h2 {
    font-size: 44px;
    margin-bottom: 22px;
    color: var(--bg-white);
    font-weight: 700;
}

.cta-content-center p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 38px;
    line-height: 1.6;
}

.cta-content-center .cta-primary {
    background-color: var(--accent-color);
}

.cta-content-center .cta-primary:hover {
    background-color: #d17a35;
}

.services-hero {
    background-color: var(--bg-light);
    padding: 100px 40px 80px 100px;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.services-hero-content {
    max-width: 800px;
    margin-left: 80px;
}

.services-hero-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
}

.services-hero-content p {
    font-size: 22px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

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

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 22px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-detail-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.7;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-detail-content ul li {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.service-detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 24px;
}

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

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

.disclaimer-section {
    background-color: var(--bg-light);
    padding: 60px 40px;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--bg-white);
    border-left: 4px solid var(--accent-color);
    border-radius: 6px;
}

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.disclaimer-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-hero {
    background-color: var(--bg-light);
    padding: 100px 40px 80px 100px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
}

.contact-hero p {
    font-size: 22px;
    color: var(--text-light);
}

.contact-content-asymmetric {
    padding: 100px 40px 80px 100px;
    display: flex;
    gap: 100px;
}

.contact-info-block {
    flex: 1;
    max-width: 500px;
}

.contact-info-block h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 36px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.contact-text-block {
    flex: 1;
    max-width: 600px;
    padding-top: 80px;
}

.contact-text-block h2 {
    font-size: 38px;
    margin-bottom: 26px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-text-block p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 22px;
    line-height: 1.8;
}

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

.contact-image-section img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    background-color: var(--bg-light);
}

.contact-faq {
    background-color: var(--bg-light);
    padding: 80px 40px 100px 100px;
}

.contact-faq h2 {
    font-size: 44px;
    margin-bottom: 60px;
    margin-left: 80px;
    color: var(--text-dark);
    font-weight: 700;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: calc(50% - 20px);
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-hero {
    background-color: var(--bg-light);
    padding: 120px 40px 100px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
}

.thanks-content p {
    font-size: 24px;
    color: var(--text-light);
}

.thanks-details {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.thanks-message {
    flex: 1.5;
}

.thanks-message h2 {
    font-size: 38px;
    margin-bottom: 26px;
    color: var(--text-dark);
    font-weight: 700;
}

.thanks-message p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 22px;
    line-height: 1.8;
}

.thanks-next-steps {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.thanks-next-steps h3 {
    font-size: 26px;
    margin-bottom: 22px;
    color: var(--text-dark);
    font-weight: 600;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps ul li {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

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

.thanks-next-steps a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.thanks-next-steps a:hover {
    text-decoration: underline;
}

.thanks-image-section {
    padding: 0 40px 80px;
}

.thanks-image-section img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    background-color: var(--bg-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-content h1 {
    font-size: 46px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.8;
}

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

.legal-content ul li {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

    .hero-content-left {
        max-width: 100%;
        padding-right: 0;
    }

    .hero-image-right {
        position: relative;
        width: 100%;
        height: 400px;
        transform: none;
        border-radius: 12px;
        margin-top: 40px;
    }

    .intro-overlap {
        flex-direction: column;
        padding: 60px 30px;
    }

    .overlap-block-2 {
        top: 0;
    }

    .services-grid-irregular .service-card {
        width: 100% !important;
        margin-top: 0 !important;
    }

    .benefits-split {
        flex-direction: column;
    }

    .benefits-content {
        padding: 60px 30px;
    }

    .story-offset,
    .approach-section,
    .service-detail {
        flex-direction: column;
    }

    .contact-content-asymmetric,
    .thanks-details {
        flex-direction: column;
        gap: 40px;
    }

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

    .faq-item {
        width: 100%;
    }
}