* {
    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: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.header-offset {
    position: relative;
    padding: 20px 5%;
}

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

.brand-mark {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-floating a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-floating a:hover {
    color: #0066cc;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 120px;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 0 5% 0 8%;
    margin-top: -60px;
}

.hero-text-block {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 45px;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-asymmetric h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1.2px;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 35px;
}

.hero-visual-layer {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 58%;
    height: 75%;
    z-index: 1;
}

.hero-visual-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background-color: #e8eef3;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
}

.cta-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 102, 204, 0.35);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 38px;
    background: transparent;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #0066cc;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #0066cc;
    color: #ffffff;
    transform: translateY(-2px);
}

.intro-diagonal {
    padding: 100px 5% 120px;
    background: linear-gradient(165deg, #f7f9fc 0%, #ffffff 100%);
    position: relative;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.split-asymmetric {
    display: flex;
    align-items: center;
    gap: 80px;
}

.content-block-left {
    flex: 1;
    padding-left: 40px;
}

.content-block-left h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.8px;
}

.content-block-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.image-block-offset {
    flex: 1;
    transform: translateY(-40px);
}

.image-block-offset img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #e8eef3;
    object-fit: cover;
}

.services-preview {
    padding: 100px 5%;
    background: #ffffff;
}

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

.section-title-offset {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 60px;
    margin-left: 60px;
    letter-spacing: -1px;
}

.services-asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    justify-content: flex-start;
}

.service-card {
    flex: 0 1 calc(33.333% - 30px);
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-elevated {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.card-offset-top {
    transform: translateY(-30px);
}

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

.card-offset-top:hover {
    transform: translateY(-35px);
}

.card-visual {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e8eef3;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 25px 25px 15px;
    line-height: 1.3;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0 25px 20px;
}

.price-tag {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #0066cc;
    margin: 0 25px 15px;
}

.link-arrow {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    margin: 0 25px 25px;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: #0052a3;
    transform: translateX(4px);
}

.link-arrow::after {
    content: " →";
}

.cta-inline {
    text-align: center;
    margin-top: 60px;
}

.philosophy-overlap {
    padding: 120px 5%;
    background: #f9fafb;
    position: relative;
}

.container-overlap {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

.philosophy-content {
    flex: 1.2;
    padding-right: 50px;
}

.philosophy-content h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.9px;
}

.philosophy-content p {
    font-size: 18px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 22px;
}

.philosophy-visual {
    flex: 1;
    transform: translateX(25px);
}

.philosophy-visual img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    background-color: #e8eef3;
    object-fit: cover;
}

.testimonial-floating {
    padding: 80px 5%;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
}

.testimonial-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    border-left: 4px solid #ffffff;
}

.testimonial-block p {
    font-size: 24px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-block cite {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
}

.contact-form-section {
    padding: 100px 5%;
    background: #ffffff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.container-narrow h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 45px;
}

.service-selection-form {
    background: #f9fafb;
    padding: 45px 50px;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #0066cc;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 102, 204, 0.3);
}

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

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1300px;
    margin: 0 auto 30px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #888;
}

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

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

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

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

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

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

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

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

.cookie-accept {
    background: #0066cc;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.cookie-reject {
    background: #e0e0e0;
    color: #333;
}

.cookie-reject:hover {
    background: #d0d0d0;
    transform: translateY(-2px);
}

.cookie-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #0052a3;
}

.page-hero-minimal {
    padding: 80px 5% 60px;
    text-align: center;
    background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 100%);
}

.page-hero-minimal h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -1.5px;
}

.page-subtitle {
    font-size: 20px;
    color: #555;
    line-height: 1.5;
}

.about-story {
    padding: 100px 5%;
    background: #ffffff;
}

.story-layout-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 70px;
}

.story-image-overlap {
    flex: 1;
    position: relative;
    transform: translateY(40px);
}

.story-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: #e8eef3;
    object-fit: cover;
}

.story-content-offset {
    flex: 1.3;
}

.story-content-offset h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.8px;
}

.story-content-offset p {
    font-size: 17px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 20px;
}

.mission-block {
    padding: 100px 5%;
    background: #f7f9fc;
}

.mission-block h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.mission-block p {
    font-size: 18px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 22px;
}

.team-section {
    padding: 100px 5%;
    background: #ffffff;
}

.team-section h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.team-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 45px;
    flex-wrap: wrap;
}

.team-member-card {
    flex: 0 1 calc(33.333% - 30px);
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-offset-down {
    transform: translateY(30px);
}

.team-member-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.card-offset-down:hover {
    transform: translateY(25px);
}

.member-visual {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e8eef3;
}

.member-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 25px 25px 8px;
}

.role {
    font-size: 15px;
    color: #0066cc;
    font-weight: 600;
    margin: 0 25px 15px;
}

.team-member-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0 25px 25px;
}

.values-offset {
    padding: 100px 5%;
    background: linear-gradient(165deg, #f7f9fc 0%, #ffffff 100%);
}

.values-offset h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

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

.value-block {
    flex: 1;
    padding: 35px 30px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.block-elevated {
    transform: translateY(-20px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-block:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.block-elevated:hover {
    transform: translateY(-28px);
}

.value-block h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.cta-about {
    padding: 80px 5%;
    background: #ffffff;
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 18px;
}

.cta-about p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
}

.services-full {
    padding: 80px 5%;
    background: #ffffff;
}

.service-detail-asymmetric {
    max-width: 1300px;
    margin: 0 auto 90px;
    display: flex;
    align-items: center;
    gap: 70px;
}

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

.service-content-main {
    flex: 1.2;
}

.service-content-main h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.7px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 25px;
}

.service-content-main p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.service-content-main h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-content-main ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

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

.service-visual-offset {
    flex: 1;
    transform: translateY(-25px);
}

.service-visual-offset img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: #e8eef3;
    object-fit: cover;
}

.cta-services {
    padding: 80px 5%;
    background: #f7f9fc;
    text-align: center;
}

.cta-services h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 18px;
}

.cta-services p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
}

.contact-info-section {
    padding: 80px 5%;
    background: #ffffff;
}

.contact-layout-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 70px;
}

.contact-details-block {
    flex: 1;
    padding-top: 20px;
}

.contact-details-block h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.contact-visual-offset {
    flex: 1;
    transform: translateY(40px);
}

.contact-visual-offset img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: #e8eef3;
    object-fit: cover;
}

.contact-note {
    margin-top: 20px;
    font-size: 15px;
    color: #666;
    font-style: italic;
}

.map-placeholder {
    padding: 0 5% 80px;
}

.map-visual {
    max-width: 1400px;
    margin: 0 auto;
}

.map-visual img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #e8eef3;
    object-fit: cover;
}

.thanks-hero {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 100%);
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0066cc;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
}

.thanks-service-info {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 4px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.thanks-service-info p {
    font-size: 17px;
    color: #333;
    font-weight: 600;
}

.thanks-next-steps {
    text-align: left;
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 4px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.thanks-next-steps h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thanks-next-steps ul {
    margin-left: 20px;
}

.thanks-next-steps ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

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

.thanks-visual {
    margin-top: 50px;
}

.thanks-visual img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #e8eef3;
    object-fit: cover;
}

.legal-page {
    padding: 80px 5%;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
}

.legal-update {
    font-size: 15px;
    color: #888;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 45px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 18px;
}

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

.legal-page ul li {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 12px;
}

.legal-page a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-page a:hover {
    color: #0052a3;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .split-asymmetric,
    .container-overlap,
    .story-layout-asymmetric,
    .service-detail-asymmetric,
    .contact-layout-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail-asymmetric.reverse {
        flex-direction: column;
    }

    .hero-asymmetric {
        flex-direction: column-reverse;
        min-height: auto;
        padding: 50px 0;
    }

    .hero-visual-layer {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 350px;
        margin-bottom: 40px;
    }

    .hero-content-offset {
        padding: 0 5%;
        margin-top: 0;
    }

    .services-asymmetric-grid,
    .team-asymmetric {
        flex-direction: column;
    }

    .service-card,
    .team-member-card {
        flex: 1 1 100%;
    }

    .values-grid-asymmetric {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        gap: 20px;
        font-size: 14px;
    }

    .hero-asymmetric h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .content-block-left h2,
    .philosophy-content h2,
    .section-title-offset {
        font-size: 32px;
    }

    .page-hero-minimal h1 {
        font-size: 38px;
    }

    .testimonial-block p {
        font-size: 20px;
    }

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