* {
    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-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-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: #1a73e8;
    text-decoration: none;
}

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

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

.nav-menu a:hover {
    color: #1a73e8;
}

.hero-section {
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px;
}

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

.hero-content p {
    font-size: 22px;
    font-weight: 300;
}

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

.content-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

.intro-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.visual-block {
    background-color: #ffffff;
}

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

.column-text {
    flex: 1;
}

.column-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.column-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4a5568;
}

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

.column-image img {
    width: 100%;
    height: auto;
    display: block;
}

.benefits-section {
    background-color: #1a73e8;
    color: #ffffff;
}

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

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

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    background-color: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 8px;
}

.benefit-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
}

.process-section {
    background-color: #ffffff;
}

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

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

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    background-color: #1a73e8;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

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

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

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

.services-preview h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
}

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

.service-item {
    flex: 1;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-item img {
    width: 100%;
    height: 250px;
}

.service-item h4 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.service-item p {
    font-size: 15px;
    margin: 0 25px 20px;
    color: #4a5568;
    line-height: 1.6;
    flex-grow: 1;
}

.service-item .price {
    font-size: 20px;
    font-weight: 700;
    color: #1a73e8;
    margin: 0 25px 25px;
}

.cta-center {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background-color: #1a73e8;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1557b0;
}

.btn-secondary {
    display: inline-block;
    background-color: #6c757d;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

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

.form-intro p {
    font-size: 17px;
    color: #4a5568;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

.trust-section {
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-section h3 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.trust-section p {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
}

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

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

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #999;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.btn-accept {
    background-color: #1a73e8;
    color: #ffffff;
}

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

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

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

.page-header {
    background-color: #f8f9fa;
    padding: 80px 40px 60px;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    color: #6c757d;
}

.services-detailed {
    background-color: #ffffff;
}

.service-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e9ecef;
}

.service-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

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

.service-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.service-info {
    flex: 1;
}

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

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

.service-info ul {
    margin: 25px 0;
    padding-left: 25px;
}

.service-info ul li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.service-price {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.price-label {
    font-size: 16px;
    color: #6c757d;
    margin-right: 10px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #1a73e8;
}

.cta-section {
    background-color: #1a73e8;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

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

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #1a73e8;
}

.cta-section .btn-primary:hover {
    background-color: #f0f0f0;
}

.about-intro {
    background-color: #ffffff;
}

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

.about-text {
    flex: 1;
}

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

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

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

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

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

.value-item {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

.experience-section {
    background-color: #ffffff;
}

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

.split-content {
    flex: 1;
}

.split-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4a5568;
}

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

.split-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

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

.team-section {
    background-color: #ffffff;
}

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

.team-section > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: #4a5568;
}

.team-image-wrapper {
    background-color: #e9ecef;
}

.team-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.commitment-section {
    background-color: #2c3e50;
    color: #ffffff;
}

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

.commitment-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-content {
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-info > p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #4a5568;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.info-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

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

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

.location-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.appointment-section {
    background-color: #ffffff;
}

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

.appointment-section p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    color: #4a5568;
}

.thanks-section {
    background-color: #ffffff;
}

.thanks-section .content-narrow {
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-confirmation {
    background-color: #e8f4fd;
    padding: 20px;
    border-radius: 6px;
    margin: 25px 0;
    font-size: 16px;
    color: #1a73e8;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

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

.thanks-image img {
    width: 100%;
    height: auto;
    display: block;
}

.legal-content {
    background-color: #ffffff;
}

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

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

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

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

    .two-column-layout,
    .about-layout,
    .split-layout,
    .contact-grid,
    .services-cards,
    .service-block {
        flex-direction: column;
    }

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

    .thanks-section .content-narrow {
        flex-direction: column;
    }

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

    .benefit-card,
    .value-item {
        flex: 1 1 100%;
    }

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

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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