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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f8f9fa;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding: 80px 30px 80px 60px;
    margin-left: 5%;
}

.hero-content-offset h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content-offset p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

.hero-image-overlap {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    width: 55%;
    height: 85%;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

.cta-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 62, 80, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.cta-outline {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2c3e50;
    transition: all 0.3s;
}

.cta-outline:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.intro-shifted {
    padding: 100px 30px;
    background-color: #ffffff;
}

.intro-narrow {
    max-width: 680px;
    margin-left: 12%;
}

.intro-narrow h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.intro-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.services-irregular {
    padding: 120px 30px;
    background-color: #f8f9fa;
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 60px;
    margin-left: 8%;
}

.section-header-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-left p {
    font-size: 18px;
    color: #4a5568;
}

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

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

.card-middle {
    width: calc(45% - 20px);
    margin-left: auto;
    margin-right: 5%;
}

.card-bottom {
    width: calc(38% - 20px);
    margin-left: 8%;
}

.card-side {
    width: calc(42% - 20px);
    margin-left: auto;
    margin-top: -40px;
}

.card-accent {
    width: calc(50% - 20px);
    margin-left: 5%;
}

.card-final {
    width: calc(55% - 20px);
    margin-left: auto;
    margin-right: 10%;
    margin-top: -30px;
}

.service-card img {
    width: 100%;
    height: 220px;
    background-color: #e2e8f0;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 24px 16px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 24px 16px;
}

.select-service {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-diagonal {
    padding: 100px 30px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    transform: skewY(-2deg);
    margin: 80px 0;
}

.trust-content {
    transform: skewY(2deg);
    max-width: 1100px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.testimonials-stagger {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial-left {
    margin-right: 20%;
}

.testimonial-right {
    margin-left: 25%;
}

.testimonial-center {
    margin: 0 auto;
    max-width: 70%;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial cite {
    font-size: 15px;
    font-style: normal;
    opacity: 0.9;
}

.form-offset {
    padding: 100px 30px;
    background-color: #ffffff;
}

.form-wrapper {
    max-width: 600px;
    margin-left: 15%;
}

.form-wrapper h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-wrapper > p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 12px;
}

.btn-submit:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.disclaimer-block {
    padding: 50px 30px;
    background-color: #fff9e6;
    border-top: 3px solid #f39c12;
}

.disclaimer-block p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #5d4e37;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 30px 30px;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.footer-col h4 {
    font-size: 17px;
    margin-bottom: 16px;
    color: #e2e8f0;
}

.footer-col p {
    font-size: 15px;
    color: #a0aec0;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #718096;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px 30px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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: 30px;
}

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #6c7a7b;
}

.page-content {
    min-height: 60vh;
}

.page-hero-offset {
    padding: 80px 30px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-hero-content {
    max-width: 800px;
    margin-left: 10%;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-hero-content p {
    font-size: 19px;
    color: #4a5568;
}

.about-story {
    padding: 80px 30px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-block-left {
    flex: 1;
}

.story-block-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.story-block-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.story-image-right {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-diagonal {
    padding: 100px 30px;
    background-color: #f8f9fa;
    transform: skewY(-2deg);
    margin: 60px 0;
}

.values-diagonal h2 {
    transform: skewY(2deg);
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid {
    transform: skewY(2deg);
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.approach-section {
    padding: 80px 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 36px;
    font-weight: 800;
    color: #3498db;
    min-width: 60px;
}

.step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.cta-about {
    padding: 80px 30px;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.services-detailed {
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-left {
    flex-direction: row;
}

.service-right {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 24px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin: 24px 0;
}

.service-full {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
}

.service-full-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: #1a1a1a;
}

.service-full-content > p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.package-includes {
    display: flex;
    gap: 50px;
    margin: 40px 0;
}

.package-col {
    flex: 1;
}

.package-col h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.package-col ul {
    list-style: none;
    padding: 0;
}

.package-col ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.package-col ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.service-cta {
    padding: 80px 30px;
    background-color: #f8f9fa;
    text-align: center;
}

.service-cta h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-cta p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.contact-info-asymmetric {
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-block {
    flex: 1;
}

.contact-left {
    margin-right: 5%;
}

.contact-right {
    margin-left: 3%;
}

.contact-block h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.contact-cta {
    padding: 80px 30px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-cta h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-cta p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.thanks-hero {
    padding: 100px 30px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-content > p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

.thanks-info {
    margin: 30px 0;
}

.selected-service {
    font-size: 17px;
    padding: 16px 24px;
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
    color: #1e7e34;
}

.thanks-next {
    margin: 60px 0;
}

.thanks-next h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.next-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.next-step p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    padding-top: 6px;
}

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

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

.legal-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 24px 0 12px;
    color: #34495e;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 28px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

.legal-section a {
    color: #3498db;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        margin-left: 0;
        padding: 60px 20px;
    }

    .hero-content-offset h1 {
        font-size: 38px;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        transform: none;
        width: 100%;
        height: 300px;
    }

    .services-grid-offset {
        flex-direction: column;
    }

    .card-top,
    .card-middle,
    .card-bottom,
    .card-side,
    .card-accent,
    .card-final {
        width: 100%;
        margin: 0;
    }

    .trust-diagonal {
        transform: none;
        margin: 40px 0;
    }

    .trust-content {
        transform: none;
    }

    .testimonial-left,
    .testimonial-right,
    .testimonial-center {
        margin: 0;
        max-width: 100%;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

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

    .about-story,
    .service-detail,
    .contact-info-asymmetric,
    .package-includes {
        flex-direction: column;
    }

    .service-left,
    .service-right {
        flex-direction: column;
    }

    .values-diagonal {
        transform: none;
    }

    .values-grid {
        transform: none;
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}