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

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.cookie-btn.reject {
    background: #95a5a6;
    color: white;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 32px;
}

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

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

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #495057;
}

.hero-right {
    flex: 1;
    background: #dcdfe3;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.why-section {
    padding: 100px 0;
    background: #ffffff;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-image {
    flex: 1;
    background: #e8eaed;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.split-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #495057;
}

.services-grid {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-grid h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 24px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #495057;
}

.service-card .price {
    margin: 0 24px 20px;
    font-size: 28px;
    font-weight: 700;
    color: #2ecc71;
}

.select-service {
    margin: 0 24px 24px;
    width: calc(100% - 48px);
    padding: 12px 24px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #2980b9;
}

.approach-section {
    padding: 100px 0;
    background: #ffffff;
}

.split-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #495057;
}

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

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

.approach-text {
    flex: 1;
}

.form-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 16px 36px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #2980b9;
}

.disclaimer-section {
    padding: 60px 0;
    background: #ecf0f1;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #7f8c8d;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 24px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.page-hero {
    padding: 80px 0 40px;
    background: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: #495057;
}

.about-intro {
    padding: 80px 0;
    background: #ffffff;
}

.values-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 32px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
}

.experience-section {
    padding: 80px 0;
    background: #ffffff;
}

.experience-text {
    flex: 1;
}

.experience-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.experience-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #495057;
}

.experience-image {
    flex: 1;
    background: #e8eaed;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.commitment-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.commitment-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
    color: #1a1a1a;
}

.commitment-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #495057;
}

.services-detail {
    padding: 60px 0;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 350px;
}

.service-detail-content {
    flex: 1;
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #495057;
}

.service-detail-content .select-service {
    margin: 24px 0 0;
    width: auto;
}

.contact-info-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-details > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #495057;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
}

.contact-email {
    font-weight: 500;
    color: #2c3e50;
}

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

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

.contact-note {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-note h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-note p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #495057;
}

.thanks-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #495057;
}

.thanks-content #serviceConfirmation {
    font-weight: 600;
    color: #2ecc71;
}

.thanks-content a {
    margin-top: 24px;
}

.legal-page {
    padding: 80px 0;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.update-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #495057;
}

.legal-page ul {
    margin: 16px 0 16px 32px;
    color: #495057;
}

.legal-page ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

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

    .hero-left {
        padding: 60px 40px;
    }

    .hero-right {
        min-height: 400px;
    }

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

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .hero-left p {
        font-size: 16px;
    }

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

    .value-item {
        flex: 1 1 100%;
    }
}