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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-medium {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

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

.nav-main a:hover {
    color: #1a1a1a;
}

.ad-notice {
    font-size: 0.75rem;
    color: #9ca3af;
    padding: 0.25rem 0.75rem;
    background-color: #f9fafb;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: #f9fafb;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
}

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

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

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

.intro-section {
    padding: 5rem 0;
}

.intro-text {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1.8;
}

.services-split {
    background-color: #ffffff;
}

.services-intro {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.services-intro p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
}

.service-item-split {
    display: flex;
    min-height: 500px;
}

.service-left,
.service-right {
    flex: 1;
}

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

.service-image-container {
    width: 100%;
    height: 100%;
}

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

.service-text {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: #111827;
}

.service-text p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 1.5rem 0;
}

.btn-select-service {
    background-color: #1f2937;
    color: #ffffff;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

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

.form-section {
    padding: 6rem 0;
    background-color: #f3f4f6;
}

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

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

.form-left-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #111827;
}

.form-left-content p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
}

.main-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

.trust-section {
    padding: 6rem 0;
}

.trust-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #111827;
}

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

.trust-item {
    flex: 1;
    min-width: 250px;
}

.trust-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.trust-item p {
    color: #4b5563;
    line-height: 1.7;
}

.footer-main {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

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

.footer-column p {
    font-size: 0.875rem;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.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;
    margin: 0;
    font-size: 0.875rem;
}

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

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

.btn-cookie-accept {
    background-color: #10b981;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: #6b7280;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #4b5563;
}

.page-hero-split {
    display: flex;
    min-height: 400px;
}

.page-hero {
    padding: 5rem 0;
    background-color: #f9fafb;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #111827;
}

.page-hero p {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
}

.about-content-split {
    display: flex;
    padding: 4rem 0;
}

.content-left,
.content-right {
    flex: 1;
}

.content-text {
    padding: 2rem 4rem;
}

.content-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.content-text p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.content-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

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

.values-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #111827;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.value-item p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.team-split-section {
    display: flex;
    min-height: 500px;
}

.team-left,
.team-right {
    flex: 1;
}

.team-image {
    width: 100%;
    height: 100%;
}

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

.team-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.team-content p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.cta-section {
    padding: 6rem 0;
    background-color: #1f2937;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #1f2937;
}

.cta-section .btn-primary:hover {
    background-color: #f3f4f6;
}

.services-detail-section {
    background-color: #ffffff;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
}

.service-detail-left,
.service-detail-right {
    flex: 1;
}

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

.service-detail-image {
    width: 100%;
    height: 100%;
}

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

.service-detail-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.price-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
}

.contact-hero {
    padding: 5rem 0;
    background-color: #f9fafb;
    text-align: center;
}

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

.contact-hero p {
    font-size: 1.25rem;
    color: #4b5563;
}

.contact-info-section {
    padding: 5rem 0;
}

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

.contact-left,
.contact-right {
    flex: 1;
}

.contact-left h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #111827;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.contact-item p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.contact-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

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

.contact-note {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.contact-note h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.contact-note p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-section {
    padding: 6rem 0;
    text-align: center;
}

.thanks-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #111827;
}

.thanks-section p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.thanks-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #111827;
}

.thanks-next ul {
    list-style-position: inside;
    color: #4b5563;
    line-height: 2;
}

.legal-content {
    padding: 5rem 0;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #111827;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.legal-content p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1rem;
    margin-left: 2rem;
    color: #4b5563;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-split,
    .service-item-split,
    .form-split,
    .about-content-split,
    .team-split-section,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content h1,
    .page-hero h1,
    .contact-hero h1,
    .thanks-section h1 {
        font-size: 2rem;
    }

    .hero-left,
    .service-text,
    .content-text,
    .team-content,
    .service-detail-content {
        padding: 2rem;
    }

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

    .nav-main {
        gap: 1rem;
    }
}