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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 2rem;
}

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

.nav a:hover {
    color: #e67e22;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #fafafa;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    background-color: #d4a574;
    overflow: hidden;
}

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

.cta-primary {
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

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

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

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

.services-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-image {
    flex: 1;
    background-color: #d4a574;
    min-height: 300px;
}

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

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-info p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.btn-select {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

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

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

.form-visual {
    flex: 1;
    background-color: #e8d5c4;
}

.form-visual h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    padding: 2rem 2rem 0;
    font-weight: 700;
}

.form-visual p {
    font-size: 1.1rem;
    color: #555;
    padding: 0 2rem 2rem;
}

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

.form-content {
    flex: 1;
    padding: 2rem;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

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

.trust-section {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.trust-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.trust-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.trust-image {
    flex: 1;
    background-color: #d4a574;
}

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

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e67e22;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

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

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

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

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

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

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

.story-image {
    flex: 1;
    background-color: #d4a574;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.philosophy-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.philosophy-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
}

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

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

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.philosophy-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

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

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.team-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.team-image {
    flex: 1;
    background-color: #d4a574;
}

.team-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.values-container h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
}

.values-split {
    display: flex;
    gap: 3rem;
}

.value-item {
    flex: 1;
    text-align: center;
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.value-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.services-detailed {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

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

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

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

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

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.price-tag {
    display: inline-block;
    background-color: #e67e22;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

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

.btn-primary {
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #d35400;
}

.cta-section {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-large {
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-large:hover {
    background-color: #d35400;
}

.contact-section-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #e67e22;
    border-radius: 4px;
}

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

.contact-visual {
    flex: 1;
    background-color: #d4a574;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.location-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

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

.location-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.location-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page {
    padding: 3rem 2rem 5rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 800;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-container p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container ul li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-container a {
    color: #e67e22;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: #7f8c8d;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.selected-service {
    font-size: 1.1rem;
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-secondary {
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-card,
    .form-container-split,
    .trust-content-split,
    .about-story-split,
    .team-section-split,
    .service-detail-split,
    .contact-section-split {
        flex-direction: column;
    }

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

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

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

    .values-split {
        flex-direction: column;
    }

    .philosophy-grid {
        flex-direction: column;
    }

    .nav {
        gap: 1rem;
    }

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

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

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    .nav {
        width: 100%;
        justify-content: center;
    }

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

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

    .section-header-centered h2 {
        font-size: 2rem;
    }

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