* {
    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: #333;
    background-color: #fff;
}

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

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.nav-links a:hover {
    color: #2c3e50;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

.hero-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #34495e;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #2c3e50;
}

.cta-inline {
    display: inline-block;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 4px;
    transition: opacity 0.3s;
}

.cta-inline:hover {
    opacity: 0.7;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
}

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

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

.split-content {
    flex: 1;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

p {
    margin-bottom: 20px;
    color: #555;
    font-size: 17px;
}

.intro-section {
    background-color: #fff;
}

.services-preview {
    background-color: #f8f9fa;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    min-width: 280px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 16px;
    color: #666;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
}

.select-service {
    width: 100%;
    padding: 14px;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.value-section {
    background-color: #fff;
}

.process-section {
    background-color: #2c3e50;
    color: #fff;
}

.process-section h2 {
    color: #fff;
}

.process-steps {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 240px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    margin-bottom: 16px;
}

.step h3 {
    color: #fff;
    margin-bottom: 12px;
}

.step p {
    color: rgba(255,255,255,0.85);
}

.testimonials-section {
    background-color: #f8f9fa;
}

.testimonials-container {
    display: flex;
    gap: 35px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #2c3e50;
    min-width: 280px;
}

.testimonial p {
    font-style: italic;
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    color: #666;
    font-style: normal;
}

.cta-section {
    background-color: #34495e;
    color: #fff;
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 30px;
}

.cta-box h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 35px;
}

.form-section {
    background-color: #f8f9fa;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.selected-service-display {
    padding: 16px;
    background-color: #e8f4f8;
    border-left: 4px solid #2c3e50;
    margin-bottom: 24px;
    display: none;
}

.selected-service-display.active {
    display: block;
}

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

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

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 30px 30px;
}

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

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

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

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

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: rgba(255,255,255,0.9);
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background-color: #fff;
    color: #2c3e50;
}

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

.cookie-btn:hover {
    opacity: 0.8;
}

.page-hero {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 100px 30px;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 16px;
    color: #fff;
}

.page-hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
}

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

.values-section {
    background-color: #f8f9fa;
}

.values-grid {
    display: flex;
    gap: 35px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    margin-bottom: 12px;
}

.expertise-section {
    padding: 80px 0;
}

.approach-section {
    background-color: #f8f9fa;
}

.intro-text {
    font-size: 20px;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
}

.approach-content {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1;
    min-width: 240px;
}

.experience-section {
    background-color: #2c3e50;
    color: #fff;
}

.experience-section h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

.cta-about {
    background-color: #34495e;
    text-align: center;
    color: #fff;
}

.cta-about h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-about p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 35px;
}

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

.service-detail-item:last-child {
    margin-bottom: 0;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 25px 0;
}

.services-info {
    background-color: #f8f9fa;
}

.info-grid {
    display: flex;
    gap: 35px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.info-item {
    flex: 1;
    min-width: 240px;
}

.pricing-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff;
    border-left: 4px solid #2c3e50;
    font-style: italic;
    color: #666;
}

.cta-services {
    background-color: #34495e;
    text-align: center;
    color: #fff;
}

.cta-services h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-services p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 35px;
}

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

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

.contact-info {
    flex: 1;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
}

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

.contact-detail h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

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

.contact-approach {
    background-color: #f8f9fa;
}

.faq-section {
    background-color: #fff;
}

.faq-container {
    margin-top: 50px;
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.thanks-section {
    padding: 80px 0;
}

.thanks-content {
    flex: 1;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid #2c3e50;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #fff;
}

.thanks-visual {
    flex: 1;
}

.thanks-visual img {
    width: 100%;
    border-radius: 8px;
}

.next-steps {
    background-color: #f8f9fa;
}

.steps-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
}

.step-item .step-number {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.step-item h3 {
    margin-bottom: 12px;
}

.step-item p {
    color: #666;
    font-size: 16px;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #555;
}

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

.legal-page ul li {
    margin-bottom: 8px;
    color: #555;
}

.legal-page a {
    color: #2c3e50;
    text-decoration: underline;
}

.legal-page a:hover {
    opacity: 0.7;
}

.last-updated {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: #999;
}

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

    .hero-content {
        padding: 50px 30px;
    }

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

    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
    }

    h2 {
        font-size: 28px;
    }

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

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

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

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

    .cookie-buttons {
        justify-content: center;
    }
}