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

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

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

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

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

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

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

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

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

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

.intro-text-center {
    padding: 80px 40px;
    background: #ffffff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text-center h2 {
    font-size: 36px;
    margin-bottom: 25px;
    text-align: center;
    color: #2c3e50;
}

.intro-text-center p {
    font-size: 18px;
    text-align: center;
    color: #555;
    line-height: 1.8;
}

.problem-insight {
    background: #f8f9fa;
    padding: 80px 40px;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-block {
    flex: 1;
}

.content-block h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.image-block {
    flex: 1;
    background: #dee2e6;
}

.image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.services-showcase {
    padding: 100px 40px;
    background: #ffffff;
}

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

.services-showcase h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e9ecef;
}

.service-card h3 {
    padding: 20px 25px 10px;
    font-size: 22px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px 15px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.service-card .price {
    padding: 0 25px 15px;
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
}

.select-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #5568d3;
}

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

.split-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
}

.image-side {
    flex: 1;
    background: #dee2e6;
}

.image-side img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.content-side {
    flex: 1;
}

.content-side h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.benefits-list {
    list-style: none;
    margin-bottom: 35px;
}

.benefits-list li {
    padding: 12px 0 12px 30px;
    font-size: 17px;
    color: #555;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 20px;
}

.cta-secondary {
    display: inline-block;
    background: #667eea;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #5568d3;
}

.testimonials-inline {
    padding: 80px 40px;
    background: #ffffff;
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonial-item {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.testimonial-item .quote {
    font-size: 18px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-item .author {
    font-size: 15px;
    color: #6c757d;
    font-weight: 600;
}

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

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

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    color: #6c757d;
    margin-bottom: 35px;
    font-size: 16px;
}

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

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

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

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

.form-group input[readonly] {
    background: #f8f9fa;
    color: #667eea;
    font-weight: 600;
}

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

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

.trust-elements {
    padding: 80px 40px;
    background: #f8f9fa;
}

.trust-elements h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 20px;
    color: #667eea;
    margin-bottom: 10px;
}

.trust-item p {
    color: #555;
    font-size: 15px;
}

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

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.disclaimer {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.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: #bdc3c7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    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.5;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background: #667eea;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.success-message {
    max-width: 600px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.success-message h1 {
    font-size: 36px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-message p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.success-message a {
    display: inline-block;
    background: #667eea;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.success-message a:hover {
    background: #5568d3;
}

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

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

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

.about-content {
    padding: 80px 40px;
    background: #ffffff;
}

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

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

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

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

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

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

.experience-section {
    padding: 80px 40px;
    background: #ffffff;
}

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

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

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

.services-detailed {
    padding: 80px 40px;
    background: #ffffff;
}

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

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

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

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

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

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.services-cta {
    padding: 80px 40px;
    background: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.contact-content {
    padding: 80px 40px;
    background: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

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

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

.contact-map {
    flex: 1;
    background: #e9ecef;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    min-height: 400px;
}

.contact-additional {
    padding: 80px 40px;
    background: #f8f9fa;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

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

.contact-additional .cta-primary {
    margin: 0 auto;
}

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

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

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

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #667eea;
}

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

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

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

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

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

.legal-date {
    margin-top: 50px;
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

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

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

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

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

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

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

    .nav-menu {
        gap: 20px;
    }

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

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

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

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