* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

.hero-asymmetric {
    min-height: 90vh;
    padding: 60px 5%;
    display: flex;
    align-items: center;
}

.hero-offset-content {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

.hero-text-block {
    flex: 1;
    padding-right: 40px;
    transform: translateY(-30px);
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-text-block p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.hero-image-offset {
    flex: 1;
    height: 600px;
    transform: translateY(40px) rotate(-2deg);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

.intro-irregular {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.intro-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-narrow {
    flex: 0.8;
    transform: translateY(-20px);
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-narrow p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.intro-wide {
    flex: 1.2;
    padding: 50px;
    transform: translateY(30px);
    border-radius: 6px;
}

.intro-wide p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.8;
}

.services-cards-overlap {
    padding: 120px 5% 100px;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px;
    transform: translateX(50px);
}

.services-header-offset h2 {
    font-size: 46px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-header-offset p {
    font-size: 20px;
    color: #7f8c8d;
}

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

.service-card {
    width: calc(50% - 20px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

.card-offset-2 {
    transform: translateX(30px) translateY(-20px);
}

.card-offset-3 {
    transform: translateX(-20px) translateY(10px);
}

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

.card-offset-5 {
    width: calc(50% - 20px);
    transform: translateX(-10px) translateY(-30px);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 20px;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.trust-diagonal {
    padding: 100px 5%;
    background-color: #ecf0f1;
    transform: skewY(-2deg);
    margin: 80px 0;
}

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

.trust-content-offset h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.testimonials-stagger {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.testimonial {
    width: calc(33.333% - 27px);
    background-color: #ffffff;
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-1 {
    transform: translateY(-15px);
}

.testimonial-2 {
    transform: translateY(20px);
}

.testimonial-3 {
    transform: translateY(-10px);
}

.testimonial p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.7;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    color: #7f8c8d;
    font-style: normal;
}

.form-section-asymmetric {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.form-container-offset {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
}

.form-intro {
    margin-bottom: 40px;
    transform: rotate(1deg);
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 18px;
    color: #555;
}

.contact-form-asymmetric {
    transform: rotate(1deg);
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #229954;
}

.disclaimer-section {
    padding: 60px 5%;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 15px;
    color: #856404;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 5% 30px;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col-wide {
    flex: 1.5;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
}

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

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

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

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

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

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

.about-hero-offset {
    padding: 100px 5% 80px;
    background-color: #f8f9fa;
}

.about-content-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text-primary {
    flex: 1;
    transform: translateX(-20px);
}

.about-text-primary h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text-primary p {
    font-size: 22px;
    color: #555;
    line-height: 1.7;
}

.about-image-diagonal {
    flex: 1;
    height: 450px;
    transform: translateX(20px) rotate(2deg);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.about-image-diagonal img {
    width: 100%;
    height: 100%;
}

.story-section-stagger {
    padding: 100px 5%;
}

.story-block {
    max-width: 1000px;
    margin: 0 auto 40px;
}

.story-left {
    transform: translateX(-40px);
}

.story-right {
    transform: translateX(40px);
}

.story-block h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.story-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.values-asymmetric {
    padding: 100px 5%;
    background-color: #ecf0f1;
}

.values-asymmetric h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.value-1 {
    transform: translateY(-15px);
}

.value-2 {
    transform: translateY(15px);
}

.value-3 {
    transform: translateY(-10px);
}

.value-4 {
    transform: translateY(20px);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.team-diagonal {
    padding: 100px 5%;
}

.team-intro-offset {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    transform: translateX(-20px);
}

.team-intro-offset h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-intro-offset p {
    font-size: 20px;
    color: #555;
}

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

.step {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.step-offset-1 {
    transform: translateY(-20px);
}

.step-offset-2 {
    transform: translateY(10px);
}

.step-offset-3 {
    transform: translateY(-15px);
}

.step-offset-4 {
    transform: translateY(5px);
}

.step-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.cta-about-section {
    padding: 80px 5%;
    background-color: #3498db;
}

.cta-content-irregular {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    transform: rotate(-1deg);
}

.cta-content-irregular h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content-irregular p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 30px;
}

.cta-button-offset {
    display: inline-block;
    padding: 16px 50px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button-offset:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.services-hero-diagonal {
    padding: 100px 5% 80px;
    background-color: #2c3e50;
    transform: skewY(-3deg);
    margin-top: -50px;
    padding-top: 150px;
}

.services-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    transform: skewY(3deg);
}

.services-hero-content h1 {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
}

.services-hero-content p {
    font-size: 22px;
    color: #ecf0f1;
}

.services-detailed {
    padding: 100px 5%;
}

.service-detail {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-layout-1 {
    transform: translateX(-30px);
}

.service-layout-2 {
    transform: translateX(30px);
}

.service-layout-3 {
    transform: translateX(-20px);
}

.service-layout-4 {
    transform: translateX(40px);
}

.service-layout-5 {
    transform: translateX(-15px);
}

.service-detail-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #2c3e50;
}

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

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

.benefits-offset {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.benefits-header {
    max-width: 1200px;
    margin: 0 auto 50px;
    text-align: center;
}

.benefits-header h2 {
    font-size: 42px;
    color: #2c3e50;
}

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

.benefit-item {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-hero-offset {
    padding: 100px 5% 80px;
    background-color: #3498db;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    transform: translateY(-10px);
}

.contact-hero-content h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-hero-content p {
    font-size: 22px;
    color: #ecf0f1;
}

.contact-info-asymmetric {
    padding: 100px 5%;
}

.contact-grid-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}

.contact-block {
    flex: 1;
    min-width: 250px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.contact-block-1 {
    transform: translateY(-20px);
}

.contact-block-2 {
    transform: translateY(15px);
}

.contact-block-3 {
    transform: translateY(-10px);
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.contact-additional {
    padding: 80px 5%;
    background-color: #ecf0f1;
}

.additional-info-offset {
    max-width: 1000px;
    margin: 0 auto;
    transform: translateX(-20px);
}

.additional-info-offset h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.map-placeholder-section {
    padding: 0;
}

.map-placeholder {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 24px;
    color: #7f8c8d;
}

.thanks-section {
    padding: 150px 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content-center h1 {
    font-size: 52px;
    color: #27ae60;
    margin-bottom: 25px;
}

.thanks-content-center p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.legal-content {
    padding: 80px 5%;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-container p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.legal-container ul {
    margin: 20px 0 20px 30px;
}

.legal-container ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.legal-container a {
    color: #3498db;
    text-decoration: underline;
}

.legal-container em {
    color: #7f8c8d;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .hero-offset-content,
    .intro-split,
    .about-content-irregular,
    .service-detail {
        flex-direction: column;
    }

    .hero-text-block,
    .about-text-primary {
        transform: none;
    }

    .hero-image-offset,
    .about-image-diagonal {
        transform: none;
        width: 100%;
    }

    .service-card {
        width: 100%;
        transform: none !important;
    }

    .testimonial {
        width: 100%;
    }

    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 38px;
    }

    .nav-asymmetric {
        flex-wrap: wrap;
        gap: 15px;
    }

    .ad-disclosure {
        width: 100%;
        text-align: center;
    }

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

    .footer-columns {
        flex-direction: column;
    }

    .services-header-offset,
    .story-left,
    .story-right,
    .team-intro-offset,
    .additional-info-offset {
        transform: none;
    }

    .form-container-offset {
        transform: none;
    }
}