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

.navigation {
    background-color: #1a1a1a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #999999;
    padding: 0.3rem 0.8rem;
    background-color: #2a2a2a;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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: 2rem;
    flex-wrap: wrap;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #c9a96e;
    color: #1a1a1a;
}

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

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

.btn-cookie-reject:hover {
    border-color: #999999;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f8f8;
}

.hero-content-left {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #1a1a1a;
    color: #ffffff;
}

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.hero-image-right {
    flex: 1;
    background-color: #333333;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #c9a96e;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.intro-asymmetric {
    display: flex;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    flex: 1.3;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.intro-visual {
    flex: 1;
    background-color: #e8e8e8;
}

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

.services-selection {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.services-selection h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.15rem;
    color: #5a5a5a;
}

.service-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666666;
}

.service-card .price {
    padding: 1rem 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #c9a96e;
}

.btn-select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2a2a2a;
}

.btn-select-service:active {
    background-color: #c9a96e;
    color: #1a1a1a;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-left-content {
    flex: 1;
}

.form-left-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-left-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.trust-item strong {
    font-size: 1.1rem;
    color: #1a1a1a;
}

.trust-item span {
    font-size: 0.95rem;
    color: #666666;
}

.form-right {
    flex: 1;
}

.service-form {
    background-color: #f8f8f8;
    padding: 2.5rem;
    border-radius: 6px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

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

.btn-submit:active {
    background-color: #c9a96e;
    color: #1a1a1a;
}

.testimonial-inline {
    padding: 4rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

.testimonial-inline blockquote {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    border-left: 4px solid #c9a96e;
    font-size: 1.2rem;
    line-height: 1.7;
}

.testimonial-inline blockquote:last-child {
    margin-bottom: 0;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: #c9a96e;
    font-size: 0.95rem;
}

.methodology-section {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

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

.methodology-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.method-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.step strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f0f0f0;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666666;
    text-align: center;
}

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

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #c9a96e;
}

.footer-col p,
.footer-col ul {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #cccccc;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    text-align: center;
    font-size: 0.85rem;
    color: #999999;
}

.page-header {
    padding: 4rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #cccccc;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-item {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

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

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

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.service-price-info {
    font-size: 2rem;
    font-weight: 700;
    color: #c9a96e;
    margin-bottom: 1.5rem;
}

.btn-service-cta {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service-cta:hover {
    background-color: #2a2a2a;
    transform: translateY(-2px);
}

.service-detail-image {
    flex: 1;
    background-color: #e0e0e0;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.service-approach {
    padding: 3rem 2rem;
    background-color: #f8f8f8;
    border-radius: 6px;
    text-align: center;
}

.service-approach h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-approach p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.about-intro {
    display: flex;
    gap: 4rem;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-intro-content {
    flex: 1;
}

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

.about-intro-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.about-intro-image {
    flex: 1;
    background-color: #e0e0e0;
}

.about-intro-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.about-philosophy {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

.about-philosophy h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.about-experience {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.experience-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.experience-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 6px;
}

.experience-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.experience-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.about-commitment {
    padding: 4rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

.about-commitment h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.about-commitment p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #e0e0e0;
}

.contact-page {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-split {
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1.3;
}

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

.contact-details > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

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

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.contact-note {
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 6px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666666;
}

.contact-image {
    flex: 1;
    background-color: #e0e0e0;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.contact-instructions {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

.contact-instructions h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.instructions-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.instruction-item {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 6px;
}

.instruction-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.instruction-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.thanks-details {
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 6px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-details p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 0.8rem;
}

.thanks-details strong {
    color: #1a1a1a;
}

.thanks-container > p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 2.5rem;
}

.btn-return {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-return:hover {
    background-color: #2a2a2a;
    transform: translateY(-2px);
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.legal-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

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

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

.legal-date {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #999999;
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-asymmetric,
    .form-container-split,
    .service-detail-item,
    .about-intro,
    .contact-info-split {
        flex-direction: column;
    }

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

    .hero-content-left h1,
    .page-header h1,
    .about-intro-content h1,
    .contact-details h1,
    .thanks-container h1 {
        font-size: 2.5rem;
    }

    .intro-text h2,
    .methodology-content h2,
    .about-philosophy h2,
    .about-commitment h2,
    .contact-instructions h2 {
        font-size: 2rem;
    }
}

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

    .service-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 100%;
    }

    .hero-content-left {
        padding: 3rem 2rem;
    }

    .hero-content-left h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
}