* {
    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: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
}

.hero-offset-content {
    flex: 1;
    padding: 80px 8% 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ecf0f1;
}

.hero-offset-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #2c3e50;
}

.hero-offset-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    color: #34495e;
}

.hero-visual-block {
    flex: 1;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.hero-visual-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #c0392b;
}

.intro-overlap {
    display: flex;
    padding: 0 5%;
    margin-top: -120px;
    position: relative;
    z-index: 10;
}

.intro-card-left {
    flex: 1.2;
    padding: 60px 50px;
    margin-right: -80px;
    z-index: 2;
}

.intro-card-left h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-card-left p {
    font-size: 1.1rem;
    color: #34495e;
}

.intro-image-right {
    flex: 1;
    min-height: 400px;
    overflow: hidden;
}

.intro-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.services-header-offset {
    max-width: 700px;
    margin-bottom: 60px;
    margin-left: 8%;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    color: #2c3e50;
}

.service-block-staggered {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.service-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-large {
    flex-basis: calc(60% - 20px);
}

.service-offset-top {
    flex-basis: calc(40% - 20px);
    margin-top: 80px;
}

.service-offset-bottom {
    flex-basis: calc(50% - 20px);
    margin-top: -40px;
}

.service-centered {
    flex-basis: calc(50% - 20px);
}

.service-wide {
    flex-basis: 100%;
    flex-direction: row;
}

.service-wide .service-visual {
    flex: 1;
}

.service-wide .service-info {
    flex: 1.5;
}

.service-visual {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    padding: 35px 30px;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info p {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-select {
    padding: 12px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.approach-diagonal {
    padding: 100px 5%;
    background-color: #2c3e50;
    color: #ffffff;
    position: relative;
}

.approach-content-offset {
    max-width: 900px;
    margin-left: 10%;
}

.approach-content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.approach-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 30px;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 1rem;
    color: #bdc3c7;
}

.cta-floating {
    padding: 0 5%;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.cta-box-irregular {
    padding: 60px 50px;
    color: #ffffff;
    max-width: 800px;
    margin-left: auto;
    margin-right: 10%;
    border-radius: 8px;
}

.cta-box-irregular h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-box-irregular p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #ecf0f1;
    color: #c0392b;
}

.form-section-asymmetric {
    display: flex;
    min-height: 700px;
    margin-top: 100px;
}

.form-visual-side {
    flex: 1;
    overflow: hidden;
}

.form-visual-side img {
    width: 100%;
    height: 100%;
    display: block;
}

.form-container-offset {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container-offset h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

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

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

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

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

.btn-submit {
    padding: 16px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.trust-offset {
    padding: 100px 5%;
    background-color: #ffffff;
}

.trust-block h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    max-width: 700px;
    color: #2c3e50;
}

.testimonials-staggered {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 35px 30px;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #2c3e50;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: #34495e;
    font-size: 0.95rem;
}

.testimonial-offset {
    margin-top: 40px;
}

.disclaimer-section {
    padding: 60px 5%;
    background-color: #ecf0f1;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.footer-content-irregular {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-block h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.footer-block h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.footer-block p {
    margin-bottom: 10px;
    color: #bdc3c7;
    line-height: 1.8;
}

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

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

.footer-block ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.about-hero-offset {
    display: flex;
    min-height: 70vh;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

.about-text-block {
    flex: 1;
}

.about-text-block h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-text-block p {
    font-size: 1.2rem;
    color: #34495e;
}

.about-image-diagonal {
    flex: 1;
    height: 500px;
    overflow: hidden;
    margin-top: -60px;
}

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

.philosophy-asymmetric {
    display: flex;
    padding: 80px 5%;
    gap: 80px;
    background-color: #f8f9fa;
}

.philosophy-block-left {
    flex: 1.3;
    padding-right: 40px;
}

.philosophy-block-left h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.philosophy-block-left p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #34495e;
}

.philosophy-visual-right {
    flex: 1;
    height: 450px;
    overflow: hidden;
}

.philosophy-visual-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-irregular {
    padding: 100px 5%;
}

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

.values-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 40px 35px;
    border-radius: 8px;
}

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

.value-card p {
    font-size: 1rem;
    color: #34495e;
}

.value-offset-top {
    margin-top: 60px;
}

.value-offset-bottom {
    margin-top: -30px;
}

.team-staggered {
    padding: 80px 5%;
    background-color: #ecf0f1;
}

.team-intro-offset {
    max-width: 700px;
    margin-bottom: 40px;
    margin-left: 8%;
}

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

.team-intro-offset p {
    font-size: 1.1rem;
    color: #34495e;
}

.team-highlight {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 60px;
    border-radius: 8px;
    margin-top: 40px;
}

.team-highlight p {
    font-size: 1.3rem;
    line-height: 1.8;
}

.mission-overlap {
    padding: 100px 5%;
    background-color: #ffffff;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.mission-content p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #34495e;
}

.services-header-diagonal {
    padding: 100px 5% 60px 5%;
    background-color: #ecf0f1;
}

.services-header-diagonal h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-header-diagonal p {
    font-size: 1.2rem;
    color: #34495e;
    max-width: 800px;
}

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

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

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

.service-detail-visual {
    flex: 1;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #34495e;
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: #34495e;
    font-size: 1rem;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.service-pricing-detail {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.price-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
}

.cta-services-bottom {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.cta-content-offset {
    max-width: 700px;
    margin-left: auto;
    margin-right: 10%;
    padding: 60px 50px;
    border-radius: 8px;
    color: #ffffff;
}

.cta-content-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-content-offset p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-light {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-light:hover {
    background-color: #ecf0f1;
    color: #c0392b;
}

.contact-hero-split {
    padding: 100px 5% 60px 5%;
    background-color: #ecf0f1;
}

.contact-text-offset {
    max-width: 700px;
    margin-left: 8%;
}

.contact-text-offset h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-text-offset p {
    font-size: 1.2rem;
    color: #34495e;
}

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

.contact-block-main {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-detail-card {
    flex: 1;
    padding: 50px 40px;
    border-radius: 8px;
}

.contact-detail-card h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.8;
}

.contact-note {
    font-style: italic;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.contact-visual-offset {
    flex: 1;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    margin-top: -80px;
}

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

.contact-additional-info {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.info-block {
    flex: 1;
    padding: 40px 35px;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-block p {
    font-size: 1rem;
    color: #34495e;
}

.info-offset {
    margin-top: 40px;
}

.location-info-diagonal {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.location-info-diagonal h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.location-content {
    max-width: 700px;
}

.location-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #34495e;
}

.contact-cta-offset {
    padding: 80px 5%;
}

.cta-box-contact {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 50px;
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
}

.cta-box-contact h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-box-contact p {
    font-size: 1.1rem;
}

.thanks-hero-centered {
    padding: 120px 5%;
    background-color: #ecf0f1;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #34495e;
}

.service-selected {
    font-size: 1.1rem;
    color: #e74c3c;
    font-weight: 600;
}

.thanks-next-steps {
    padding: 80px 5%;
    background-color: #ffffff;
}

.thanks-next-steps h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

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

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    line-height: 1;
}

.step-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-text p {
    font-size: 1rem;
    color: #34495e;
}

.thanks-cta-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.thanks-cta-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
}

.thanks-cta-box h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.thanks-link {
    display: block;
    padding: 14px 30px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thanks-link:hover {
    background-color: #1a252f;
}

.legal-page-content {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-update {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.legal-page-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-page-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #34495e;
    line-height: 1.8;
}

.legal-page-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page-content li {
    margin-bottom: 10px;
    color: #34495e;
    line-height: 1.8;
}

.legal-page-content a {
    color: #e74c3c;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table thead {
    background-color: #ecf0f1;
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #bdc3c7;
}

.cookies-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ecf0f1;
    color: #34495e;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-visual-block {
        margin-top: 0;
        min-height: 400px;
    }

    .intro-overlap {
        flex-direction: column;
        margin-top: 0;
    }

    .intro-card-left {
        margin-right: 0;
    }

    .service-large,
    .service-offset-top,
    .service-offset-bottom,
    .service-centered {
        flex-basis: 100%;
        margin-top: 0;
    }

    .form-section-asymmetric {
        flex-direction: column;
    }

    .about-hero-offset,
    .philosophy-asymmetric,
    .contact-block-main,
    .service-detail-block {
        flex-direction: column;
    }

    .about-image-diagonal,
    .contact-visual-offset {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

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

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

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

    .cookie-actions {
        justify-content: center;
    }
}