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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 1.5rem 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;
}

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

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

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

.nav-main a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding-right: 4rem;
}

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555555;
}

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

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

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

.btn-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

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

.intro-split.reverse {
    flex-direction: row-reverse;
}

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

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

.intro-content {
    flex: 1;
}

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

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555555;
}

.value-grid {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
}

.value-card {
    flex: 1;
    padding: 2.5rem;
    background-color: #f8f9fa;
}

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

.value-card p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.7;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: flex-start;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.step {
    margin-bottom: 2.5rem;
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e8e8e8;
    flex-shrink: 0;
}

.step h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

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

.approach-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

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

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.services-header p {
    font-size: 1.2rem;
    color: #555555;
}

.services-cards {
    display: flex;
    gap: 2rem;
}

.service-card {
    flex: 1;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
}

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

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

.service-card p {
    font-size: 1rem;
    margin: 0 1.5rem 1rem 1.5rem;
    color: #555555;
    flex-grow: 1;
}

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

.btn-service {
    display: block;
    text-align: center;
    padding: 1rem;
    background-color: #f8f9fa;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.testimonial-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.testimonial-split.reverse {
    flex-direction: row-reverse;
}

.testimonial-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.testimonial-content {
    flex: 1;
}

blockquote {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    margin: 0;
}

blockquote p {
    margin-bottom: 1.5rem;
}

cite {
    font-style: normal;
    font-size: 1rem;
    color: #7f8c8d;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555555;
}

.contact-form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 3rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.disclaimer-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.7;
}

.footer-main {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem 0;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    color: #b0b0b0;
    line-height: 1.7;
}

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

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

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

.footer-bottom p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.page-hero {
    max-width: 1400px;
    margin: 4rem auto 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.3rem;
    color: #555555;
}

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

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555555;
    line-height: 1.7;
}

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

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

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

.philosophy-split.reverse {
    flex-direction: row-reverse;
}

.philosophy-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.team-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

.team-grid {
    display: flex;
    gap: 3rem;
}

.team-member {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2.5rem;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.member-info p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.7;
}

.values-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

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

.value-item {
    padding: 2rem;
    border-left: 4px solid #3498db;
    background-color: #f8f9fa;
}

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

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

.cta-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: #2c3e50;
    color: #ffffff;
}

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

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

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #2c3e50;
}

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

.service-detail {
    margin: 4rem 0;
}

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

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

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

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

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555555;
    line-height: 1.7;
}

.service-meta {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
}

.service-duration {
    font-size: 1rem;
    color: #555555;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

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

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

.contact-page-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

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

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

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

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

.info-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 2rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.7;
}

.thanks-section {
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 2rem;
    text-align: center;
}

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

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555555;
}

.thanks-service {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

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

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

.legal-update {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

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

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

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

.legal-page ul,
.legal-page ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .approach-split,
    .testimonial-split,
    .contact-split,
    .about-split,
    .philosophy-split,
    .service-detail-split,
    .contact-page-split {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .services-cards {
        flex-direction: column;
    }

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

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

    .nav-main {
        gap: 1rem;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .ad-notice {
        width: 100%;
        text-align: center;
    }
}

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

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

    .intro-content h2,
    .approach-content h2,
    .about-content h2,
    .philosophy-content h2,
    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .services-header h2,
    .team-section h2,
    .values-section h2,
    .info-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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