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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-notice {
    font-size: 11px;
    color: #666;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

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

.cta-primary {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.intro-section {
    padding: 100px 0;
    background: #f9fafb;
}

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

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

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4b5563;
}

.split-image {
    flex: 1;
}

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

.services-section {
    padding: 100px 0;
}

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

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

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

.service-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #6b7280;
}

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

.btn-select-service {
    background: #667eea;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-select-service:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.process-section {
    padding: 100px 0;
    background: #f9fafb;
}

.process-steps {
    margin-top: 40px;
}

.step {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    min-width: 60px;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-content p {
    color: #6b7280;
    font-size: 16px;
}

.testimonials-section {
    padding: 100px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.testimonials-flex {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background: #f9fafb;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.testimonial p {
    font-size: 17px;
    font-style: italic;
    color: #374151;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #667eea;
}

.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

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

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

.form-intro p {
    font-size: 16px;
    color: #6b7280;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    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: #667eea;
}

.btn-submit {
    width: 100%;
    background: #667eea;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 0;
}

.trust-content h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1 1 calc(50% - 20px);
    padding: 30px;
    background: #f9fafb;
    border-radius: 8px;
}

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

.trust-item p {
    color: #6b7280;
    font-size: 16px;
}

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

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.disclaimer-box p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.8;
}

.main-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-primary {
    background: #667eea;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #5568d3;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #fff;
    color: #1f2937;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

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

.values-section {
    padding: 100px 0;
    background: #f9fafb;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #667eea;
}

.value-card p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
}

.team-section {
    padding: 100px 0;
}

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

.approach-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.experience-section {
    padding: 100px 0;
}

.experience-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #6b7280;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.services-detailed {
    padding: 80px 0;
}

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

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

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

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

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

.price-tag {
    display: inline-block;
    background: #667eea;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-detail-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-detail-content ul li {
    margin-bottom: 8px;
    color: #6b7280;
    line-height: 1.6;
}

.process-overview {
    padding: 100px 0;
    background: #f9fafb;
}

.process-overview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

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

.process-card {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #667eea;
}

.process-card p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
}

.contact-info-section {
    padding: 100px 0;
}

.contact-split {
    display: flex;
    gap: 80px;
}

.contact-details {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #667eea;
}

.contact-item p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background: #f9fafb;
    border-left: 4px solid #667eea;
    border-radius: 4px;
}

.contact-note p {
    font-size: 15px;
    color: #4b5563;
}

.contact-visual {
    flex: 1;
}

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

.contact-cta {
    background: #f9fafb;
    padding: 30px;
    border-radius: 8px;
}

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

.contact-cta p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #6b7280;
}

.location-section {
    padding: 100px 0;
    background: #f9fafb;
}

.location-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 30px;
}

.location-section p {
    text-align: center;
    font-size: 17px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 30px;
}

.location-info {
    max-width: 700px;
    margin: 0 auto;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
}

.location-info p {
    text-align: left;
    font-size: 16px;
}

.faq-section {
    padding: 100px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-item {
    flex: 1 1 calc(50% - 20px);
    padding: 30px;
    background: #f9fafb;
    border-radius: 8px;
}

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

.faq-item p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: #fff;
    font-size: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
}

.selected-service-info {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-next {
    margin-bottom: 40px;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.thanks-next p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 15px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-text h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #374151;
}

.legal-text h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #4b5563;
}

.legal-text p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #6b7280;
    line-height: 1.8;
}

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

.legal-text ul li {
    margin-bottom: 8px;
    color: #6b7280;
    line-height: 1.7;
}

.legal-text a {
    color: #667eea;
    text-decoration: none;
}

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

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

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

    .services-grid,
    .testimonials-flex,
    .process-flex,
    .footer-content {
        flex-direction: column;
    }

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

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

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

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

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

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

    .section-title,
    .page-hero h1 {
        font-size: 32px;
    }

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

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

    .experience-stats {
        flex-direction: column;
        gap: 30px;
    }
}