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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background: #f0f0f0;
    border-radius: 4px;
    margin: 0 1rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 8%;
    z-index: 2;
    max-width: 600px;
}

.hero-content-offset h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtext {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c5f7a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-hero:hover {
    background: #1e4357;
    cursor: pointer;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    height: 80%;
    transform: rotate(-2deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background-color: #e0e0e0;
}

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

.intro-block {
    display: flex;
    padding: 8rem 5% 6rem 10%;
    background: #f4f7f9;
    align-items: center;
    gap: 4rem;
}

.intro-offset-left {
    flex: 1.2;
}

.intro-offset-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5f7a;
}

.intro-offset-left p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
}

.intro-visual-right {
    flex: 1;
    transform: translateY(-3rem);
    background-color: #d0d0d0;
}

.intro-visual-right img {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.services-asymmetric {
    padding: 7rem 5% 5rem;
    background: #ffffff;
}

.section-title-offset {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    padding-left: 5%;
    color: #1a1a1a;
}

.service-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33% - 2rem);
    min-width: 320px;
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-card-1 {
    transform: rotate(-1deg);
}

.service-card-2 {
    transform: translateY(2rem);
}

.service-card-3 {
    transform: rotate(1deg);
}

.service-card-4 {
    transform: translateY(-1rem);
}

.service-card-5 {
    transform: rotate(-0.5deg);
}

.service-card-6 {
    transform: translateY(1.5rem);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #d0d0d0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c5f7a;
}

.service-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    color: #555;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f7a;
    padding: 0.5rem 1.5rem;
}

.btn-select-service {
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.8rem 1.5rem;
    background: #2c5f7a;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #1e4357;
}

.form-section {
    padding: 6rem 5%;
    background: #f4f7f9;
}

.form-wrapper-offset {
    max-width: 700px;
    margin-left: 10%;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: rotate(-0.5deg);
}

.form-wrapper-offset h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #2c5f7a;
}

.form-wrapper-offset > p {
    margin-bottom: 2rem;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f7a;
}

.form-group input[readonly] {
    background: #f0f0f0;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #2c5f7a;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #1e4357;
}

.trust-block {
    display: flex;
    padding: 6rem 8% 6rem 5%;
    background: #ffffff;
    align-items: center;
    gap: 5rem;
}

.trust-content-irregular {
    flex: 1.3;
    transform: translateX(3rem);
}

.trust-content-irregular h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: #2c5f7a;
}

.trust-content-irregular p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
}

.trust-visual {
    flex: 1;
    transform: rotate(2deg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    background-color: #d0d0d0;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p,
.footer-col a {
    color: #ccc;
    display: block;
    margin-bottom: 0.5rem;
}

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

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

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid #2c5f7a;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 1.5rem 5%;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    color: #333;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie-accept {
    background: #2c5f7a;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #1e4357;
}

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

.btn-cookie-reject:hover {
    background: #d0d0d0;
}

.about-hero {
    padding: 6rem 5% 4rem;
    background: #ffffff;
}

.about-content-split {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 8%;
}

.about-content-split h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-intro {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.8;
}

.about-story {
    padding: 5rem 5%;
    background: #f4f7f9;
}

.story-block-offset {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.story-block-offset img {
    flex: 1;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
    background-color: #d0d0d0;
}

.story-text {
    flex: 1.2;
    padding-top: 2rem;
}

.story-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c5f7a;
}

.story-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.philosophy-section {
    padding: 6rem 5%;
    background: #ffffff;
}

.philosophy-irregular {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 5%;
}

.philosophy-irregular h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.point-item {
    padding: 2rem;
    background: #f9f9f9;
    border-left: 5px solid #2c5f7a;
    transform: translateX(3rem);
}

.point-item:nth-child(2) {
    transform: translateX(-2rem);
}

.point-item:nth-child(3) {
    transform: translateX(1rem);
}

.point-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #2c5f7a;
}

.point-item p {
    color: #555;
    font-size: 1.05rem;
}

.approach-visual {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: #d0d0d0;
}

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

.approach-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 95, 122, 0.9);
    color: #ffffff;
    padding: 3rem 5%;
}

.approach-overlay h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.approach-overlay p {
    font-size: 1.15rem;
    line-height: 1.7;
}

.services-header {
    padding: 5rem 5% 3rem;
    background: #ffffff;
    text-align: center;
}

.services-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro {
    font-size: 1.25rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 3rem 5% 6rem;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-detail-card.offset-left {
    margin-left: 5%;
    transform: rotate(-0.5deg);
}

.service-detail-card.offset-right {
    margin-right: 5%;
    transform: rotate(0.5deg);
}

.service-detail-image {
    flex: 1;
    max-width: 450px;
    background-color: #e0e0e0;
}

.service-detail-image img {
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c5f7a;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c5f7a;
    margin-bottom: 1rem;
}

.service-detail-content p {
    margin-bottom: 1rem;
    color: #444;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: #555;
}

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

.cta-services {
    padding: 5rem 5%;
    background: #2c5f7a;
    text-align: center;
    color: #ffffff;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #ffffff;
    color: #2c5f7a;
    font-weight: 700;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
}

.cta-button:hover {
    background: #f0f0f0;
    cursor: pointer;
}

.contact-header {
    padding: 5rem 5% 3rem;
    background: #ffffff;
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 1.2rem;
    color: #555;
}

.contact-info-section {
    padding: 4rem 5% 6rem;
    background: #f4f7f9;
}

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

.contact-block {
    flex: 1;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transform: rotate(-1deg);
}

.contact-block h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #2c5f7a;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-detail p {
    color: #555;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    max-width: 500px;
    transform: translateY(3rem) rotate(1deg);
    background-color: #d0d0d0;
}

.contact-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-note {
    padding: 5rem 5%;
    background: #ffffff;
}

.note-content-offset {
    max-width: 800px;
    margin-left: 10%;
}

.note-content-offset h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c5f7a;
}

.note-content-offset p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.note-content-offset a {
    color: #2c5f7a;
    text-decoration: underline;
}

.thanks-section {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
    background: #f4f7f9;
    min-height: 70vh;
    align-items: center;
}

.thanks-content {
    flex: 1.2;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c5f7a;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #444;
    line-height: 1.7;
}

.thanks-details {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.thanks-details p {
    margin-bottom: 0.5rem;
    color: #333;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-next-steps ul {
    list-style: none;
    margin-bottom: 2rem;
}

.thanks-next-steps li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #555;
}

.thanks-next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f7a;
    font-weight: 700;
}

.btn-back-home {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2c5f7a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn-back-home:hover {
    background: #1e4357;
    cursor: pointer;
}

.thanks-visual {
    flex: 1;
    max-width: 500px;
    transform: rotate(-2deg);
    background-color: #d0d0d0;
}

.thanks-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.legal-content {
    padding: 5rem 5%;
    background: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #2c5f7a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: #333;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #444;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    color: #444;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: #2c5f7a;
    text-decoration: underline;
}

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

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

    .intro-block,
    .trust-block,
    .story-block-offset,
    .contact-info-asymmetric,
    .thanks-section {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card.offset-right {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-content-offset h1 {
        font-size: 2.2rem;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
        justify-content: space-between;
    }
}