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

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

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

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

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

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

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

.main-nav a:hover {
    color: #3498db;
}

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

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

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

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

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

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.intro-image {
    flex: 1;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
}

.services-section {
    background: #f8f9fa;
    padding: 80px 40px;
}

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

.section-header h2 {
    font-size: 38px;
    color: #2c3e50;
    line-height: 1.3;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background: #e9ecef;
}

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

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

.select-service {
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    align-self: flex-start;
}

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

.select-service.selected {
    background: #28a745;
}

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.process-text {
    flex: 1.2;
}

.process-text h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.step {
    display: flex;
    gap: 24px;
}

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

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

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

.process-image {
    flex: 0.8;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.testimonials-section {
    background: #2c3e50;
    color: #ffffff;
    padding: 80px 40px;
}

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

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

.testimonial {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    opacity: 0.8;
}

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

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

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

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 15px;
    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;
}

.form-submit {
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

.disclaimer-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 30px 40px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #856404;
}

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

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

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

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

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

.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;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: #28a745;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #218838;
}

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

.cookie-btn.reject:hover {
    background: #5a6268;
}

.selected-service-info {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 12px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 15px;
}

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

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

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

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

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

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

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

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
}

.price-display {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin: 24px 0;
}

.service-cta {
    display: inline-block;
    background: #667eea;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

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

.service-detail-image {
    flex: 1;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.benefits-section {
    background: #f8f9fa;
    padding: 80px 40px;
}

.benefits-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.benefit-item {
    flex: 1;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    gap: 60px;
    padding: 0 40px;
}

.about-image {
    flex: 1;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-item {
    flex: 1;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.process-about {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    gap: 60px;
    padding: 0 40px;
}

.process-about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.process-about-image {
    flex: 1;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.team-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.contact-info-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
}

.contact-info-card {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-detail {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.contact-note {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

.contact-map-section {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    gap: 60px;
    padding: 0 40px;
}

.contact-map-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-map-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
}

.contact-map-placeholder {
    flex: 1;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

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

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

.service-confirm {
    font-size: 17px;
    color: #495057;
    margin-bottom: 32px;
    padding: 20px;
    background: #d4edda;
    border-radius: 6px;
}

.thanks-info {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 12px;
}

.back-home-btn {
    display: inline-block;
    background: #667eea;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

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

.legal-page {
    padding: 60px 40px;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.legal-container h2 {
    font-size: 26px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.legal-container ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 8px;
}

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

.legal-container a:hover {
    color: #5568d3;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .process-split {
        flex-direction: column;
    }

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

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

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

    .form-row {
        flex-direction: column;
    }

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

    .main-nav {
        flex-wrap: wrap;
        gap: 16px;
    }

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

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

    .about-split,
    .process-about,
    .contact-map-section {
        flex-direction: column;
    }

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

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

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