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

.ad-disclosure {
    background-color: #f8f8f8;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: #0066cc;
}

.nav-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-overlay p {
    font-size: 22px;
    margin-bottom: 35px;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-hero:hover {
    background-color: #0052a3;
}

.intro-visual {
    display: flex;
    padding: 100px 40px;
    max-width: 1300px;
    margin: 0 auto;
    gap: 80px;
    align-items: center;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

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

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

.services-visual {
    padding: 80px 40px 120px;
    background-color: #fafafa;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.services-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card-offset {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 70px;
    align-items: center;
}

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

.service-image {
    flex: 0 0 45%;
    background-color: #e0e0e0;
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 25px;
}

.btn-select {
    padding: 14px 35px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #0052a3;
}

.trust-section {
    padding: 100px 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

blockquote {
    padding: 35px;
    background-color: #f8f8f8;
    border-left: 4px solid #0066cc;
    margin-top: 40px;
    font-style: italic;
}

blockquote p {
    font-size: 19px;
    margin-bottom: 15px;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: #2c2c2c;
}

.form-section {
    padding: 100px 40px;
    background-color: #f5f5f5;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.form-container > p {
    font-size: 17px;
    color: #666;
    margin-bottom: 35px;
}

.form-notice {
    padding: 15px;
    background-color: #e7f3ff;
    color: #0066cc;
    border-radius: 4px;
    margin-bottom: 25px;
    display: none;
}

.form-notice.active {
    display: block;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label a {
    color: #0066cc;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto 40px;
    gap: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
    font-size: 15px;
    line-height: 1.8;
    color: #cccccc;
    text-decoration: none;
}

.footer-col a {
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-top: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #66b3ff;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie-accept {
    background-color: #0066cc;
    color: #ffffff;
}

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

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

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

.page-hero {
    padding: 80px 40px 60px;
    text-align: center;
    background-color: #f8f8f8;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 80px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
}

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

.service-detail-card img {
    flex: 0 0 45%;
    width: 100%;
    object-fit: cover;
    background-color: #e0e0e0;
}

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

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #444;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 18px;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 16px;
    color: #666;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
}

.btn-order {
    display: inline-block;
    padding: 14px 35px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-order:hover {
    background-color: #0052a3;
}

.cta-section {
    padding: 80px 40px;
    text-align: center;
    background-color: #f8f8f8;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-cta-large:hover {
    background-color: #0052a3;
}

.about-intro {
    display: flex;
    padding: 80px 40px;
    max-width: 1300px;
    margin: 0 auto;
    gap: 70px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image {
    flex: 0 0 45%;
    background-color: #e0e0e0;
}

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

.values-section {
    padding: 80px 40px;
    background-color: #f8f8f8;
}

.values-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.process-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background-color: #0066cc;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
}

.process-step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.testimonials-section {
    padding: 80px 40px;
    background-color: #f8f8f8;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 35px;
    border-left: 4px solid #0066cc;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin-bottom: 15px;
}

.contact-section {
    padding: 80px 40px;
}

.contact-info-container {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    gap: 70px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0066cc;
}

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

.contact-item .note {
    font-size: 15px;
    color: #777;
    margin-top: 10px;
}

.contact-visual {
    flex: 0 0 45%;
    background-color: #e0e0e0;
}

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

.contact-cta-section {
    padding: 80px 40px;
    text-align: center;
    background-color: #f8f8f8;
}

.contact-cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

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

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.update-date {
    font-size: 15px;
    color: #888;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-page a {
    color: #0066cc;
    text-decoration: underline;
}

.thanks-section {
    padding: 120px 40px;
    text-align: center;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: #555;
    margin-bottom: 15px;
}

.service-confirmation {
    font-size: 18px;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

.btn-back {
    display: inline-block;
    padding: 16px 40px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-back:hover {
    background-color: #0052a3;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        background-color: #ffffff;
        flex-direction: column;
        width: 100%;
        padding: 30px 40px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transition: right 0.3s;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: block;
    }

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

    .hero-overlay p {
        font-size: 18px;
    }

    .intro-visual,
    .about-intro,
    .service-card-offset,
    .service-detail-card,
    .contact-info-container {
        flex-direction: column;
    }

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

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

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

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

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