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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #007bff;
}

.hero-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

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

.hero-content p {
    font-size: 20px;
    color: #495057;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.cta-primary {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #007bff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #007bff;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s, color 0.2s;
}

.cta-secondary:hover {
    background-color: #007bff;
    color: #ffffff;
}

.split-reverse {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    gap: 60px;
    flex-direction: row-reverse;
    background-color: #f8f9fa;
}

.split-normal {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    gap: 60px;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.value-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    gap: 40px;
}

.value-item {
    flex: 1;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

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

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

.testimonial-section {
    background-color: #007bff;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.testimonial-section blockquote {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-section p {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-section cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.9;
}

.services-preview {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.services-preview h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.services-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: left;
}

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

.service-card p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #007bff;
}

.form-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

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

.form-container h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.form-container p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.2s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.final-cta {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.final-cta p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 35px;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1;
}

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

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

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

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

.footer-column ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #adb5bd;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    padding: 20px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
    color: #495057;
}

.cookie-content a {
    color: #007bff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-accept {
    background-color: #007bff;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #0056b3;
}

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

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

.page-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px 60px;
    text-align: center;
}

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

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

.values-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #f8f9fa;
}

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-block {
    background-color: #ffffff;
    padding: 35px;
    border-left: 4px solid #007bff;
    border-radius: 4px;
}

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

.value-block p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

.team-philosophy {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

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

.team-philosophy p {
    font-size: 17px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 30px;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail {
    padding: 80px 20px;
}

.service-detail:nth-child(even) {
    background-color: #f8f9fa;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #495057;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: 700;
    font-size: 18px;
}

.pricing-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 20px;
    background-color: #e7f3ff;
    border-radius: 6px;
    margin-top: 20px;
}

.price-label {
    font-size: 14px;
    color: #495057;
    font-weight: 600;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
}

.price-unit {
    font-size: 14px;
    color: #6c757d;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.contact-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    gap: 60px;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.email-display {
    color: #495057;
    font-family: monospace;
    font-size: 15px;
    background-color: #f8f9fa;
    padding: 4px 8px;
    border-radius: 3px;
    display: inline-block;
}

.note {
    font-size: 14px;
    color: #6c757d;
    margin-top: 8px;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.additional-info {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.additional-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.help-options {
    display: flex;
    gap: 30px;
}

.help-item {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

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

.help-item p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
}

.accessibility-note {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

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

.accessibility-features {
    margin: 20px 0;
    padding-left: 30px;
}

.accessibility-features li {
    font-size: 16px;
    color: #495057;
    margin-bottom: 10px;
    line-height: 1.6;
}

.thanks-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #28a745;
}

.thanks-message {
    font-size: 18px;
    color: #495057;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #e7f3ff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.service-confirmation p {
    font-size: 16px;
    color: #1a1a1a;
    margin: 0;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.steps-list {
    padding-left: 25px;
    margin-bottom: 35px;
}

.steps-list li {
    font-size: 16px;
    color: #495057;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.thanks-visual {
    flex: 1;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

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

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

.updated-date {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.legal-page ul {
    margin: 16px 0;
    padding-left: 30px;
}

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

.legal-page a {
    color: #007bff;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.cookies-table td {
    font-size: 14px;
    color: #495057;
}

@media (max-width: 768px) {
    .hero-split,
    .split-normal,
    .split-reverse {
        flex-direction: column;
        padding: 50px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .value-grid,
    .services-cards,
    .help-options {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-layout,
    .thanks-container {
        flex-direction: column;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}