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

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
    background-color: #f8fafc;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
}

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #475569;
    max-width: 550px;
}

.hero-visual {
    flex: 1;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #1d4ed8;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #ffffff;
    color: #2563eb;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #2563eb;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.value-proposition {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 24px;
    gap: 60px;
    align-items: center;
}

.vp-left {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
}

.vp-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vp-right {
    flex: 1;
}

.vp-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e293b;
    line-height: 1.3;
}

.vp-right p {
    margin-bottom: 20px;
    color: #475569;
    font-size: 17px;
}

.benefits-list {
    list-style: none;
    margin-top: 32px;
}

.benefits-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: #334155;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 18px;
}

.approach-section {
    background-color: #f8fafc;
    padding: 100px 24px;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.approach-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1e293b;
}

.approach-content p {
    font-size: 18px;
    color: #475569;
}

.approach-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.approach-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-item.reverse {
    flex-direction: row-reverse;
}

.approach-visual {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    min-height: 350px;
}

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

.approach-text {
    flex: 1;
}

.approach-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1e293b;
}

.approach-text p {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
}

.services-overview {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1e293b;
}

.services-intro p {
    font-size: 18px;
    color: #475569;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    min-width: 300px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1e293b;
}

.service-card p {
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #1d4ed8;
}

.select-service.selected {
    background-color: #059669;
}

.contact-form-section {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 24px;
    gap: 60px;
    align-items: flex-start;
}

.form-container {
    flex: 1;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1e293b;
}

.form-intro p {
    color: #475569;
    font-size: 17px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    color: #334155;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.selected-service-display {
    padding: 14px 16px;
    background-color: #f1f5f9;
    border-radius: 8px;
    color: #475569;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.selected-service-display.has-selection {
    background-color: #dcfce7;
    color: #166534;
    font-weight: 600;
}

.btn-submit {
    padding: 16px 32px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-visual {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    min-height: 500px;
}

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

.trust-section {
    background-color: #f8fafc;
    padding: 100px 24px;
    text-align: center;
}

.trust-section h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: #1e293b;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2563eb;
    font-style: normal;
}

.main-footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
}

.footer-column {
    flex: 1;
}

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

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

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #334155;
    text-align: center;
    color: #94a3b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 16px 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;
    align-items: center;
    gap: 32px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #cbd5e1;
}

.cookie-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.btn-reject {
    background-color: #64748b;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #475569;
}

.cookie-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.cookie-link:hover {
    color: #ffffff;
}

.page-header {
    background-color: #f8fafc;
    padding: 80px 24px;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    color: #475569;
}

.services-detail {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e293b;
}

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

.detail-list {
    list-style: none;
    margin: 24px 0;
}

.detail-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: #334155;
}

.detail-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin: 32px 0 24px;
}

.service-detail-visual {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

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

.cta-section {
    background-color: #2563eb;
    color: #ffffff;
    padding: 80px 24px;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #2563eb;
}

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

.about-intro {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e293b;
}

.about-content p {
    color: #475569;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.about-visual {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

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

.values-section {
    background-color: #f8fafc;
    padding: 100px 24px;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1e293b;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-item {
    flex: 1 1 calc(50% - 16px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    min-width: 300px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2563eb;
}

.value-item p {
    color: #475569;
    line-height: 1.7;
}

.expertise-section {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
    gap: 60px;
    align-items: center;
}

.expertise-content {
    flex: 1;
}

.expertise-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e293b;
}

.expertise-content p {
    color: #475569;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.expertise-list {
    list-style: none;
    margin: 24px 0;
}

.expertise-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: #334155;
}

.expertise-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.expertise-visual {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

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

.approach-philosophy {
    max-width: 900px;
    margin: 100px auto;
    padding: 60px;
    background-color: #f8fafc;
    border-radius: 12px;
}

.approach-philosophy h2 {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
    color: #1e293b;
}

.philosophy-content p {
    color: #475569;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.contact-page-content {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1e293b;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2563eb;
    font-weight: 600;
}

.contact-item p {
    color: #475569;
    font-size: 17px;
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
    color: #334155;
}

.contact-message {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 24px;
    text-align: center;
}

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

.contact-message p {
    color: #475569;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.contact-message .cta-primary {
    margin-top: 32px;
}

.thanks-page {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1e293b;
}

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

.thanks-details {
    background-color: #dcfce7;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    color: #166534;
}

.thanks-details p {
    margin: 0;
    color: #166534;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 16px;
}

.thanks-visual {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    min-height: 500px;
}

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

.legal-page {
    max-width: 900px;
    margin: 60px auto 100px;
    padding: 0 24px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #1e293b;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1e293b;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #334155;
}

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

.legal-page ul {
    margin: 16px 0 16px 32px;
    color: #475569;
    line-height: 1.7;
}

.legal-page a {
    color: #2563eb;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-split,
    .value-proposition,
    .approach-item,
    .contact-form-section,
    .service-detail-item,
    .about-intro,
    .expertise-section,
    .contact-page-content,
    .thanks-page {
        flex-direction: column;
    }

    .approach-item.reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 16px;
    }

    .hero-content h1,
    .page-header h1 {
        font-size: 36px;
    }

    .services-grid,
    .testimonials-grid,
    .values-grid {
        flex-direction: column;
    }

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

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