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

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

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

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

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

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

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

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

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #f8f9fa;
}

.hero-content-offset {
    position: absolute;
    left: 8%;
    max-width: 520px;
    z-index: 10;
    background-color: #ffffff;
    padding: 50px 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.hero-content-offset p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #5a6c7d;
}

.hero-image-block {
    width: 65%;
    height: 85vh;
    margin-left: auto;
}

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

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.intro-offset {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-block-left {
    flex: 1;
    padding-left: 60px;
}

.intro-block-left h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.intro-block-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.intro-visual-right {
    flex: 0.9;
    margin-top: -40px;
}

.intro-visual-right img {
    width: 100%;
    height: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.services-asymmetric {
    background-color: #f8f9fa;
    padding: 100px 40px 120px;
    position: relative;
}

.section-header-floating {
    max-width: 1400px;
    margin: 0 auto 60px 120px;
}

.section-header-floating h2 {
    font-size: 48px;
    color: #2c3e50;
    font-weight: 700;
}

.service-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.service-card.large {
    flex: 1 1 calc(60% - 15px);
    display: flex;
}

.service-card.medium {
    flex: 1 1 calc(50% - 15px);
}

.service-card.medium.offset {
    margin-left: 50px;
}

.service-card.small {
    flex: 1 1 calc(40% - 15px);
}

.service-image {
    background-color: #e9ecef;
}

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

.service-card.large .service-image {
    flex: 0 0 55%;
}

.service-card.large .service-info {
    flex: 1;
    padding: 40px;
}

.service-card.medium .service-info,
.service-card.small .service-info {
    padding: 35px;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

.select-service {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.form-container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro {
    flex: 0 0 380px;
    padding-top: 20px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-form {
    flex: 1;
    background-color: #f8f9fa;
    padding: 45px;
}

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

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

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #dee2e6;
    background-color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #2980b9;
}

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

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

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

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

.trust-item {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 35px;
}

.trust-item p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.trust-author {
    font-size: 14px;
    color: #95a5a6;
    font-weight: 600;
}

.about-preview {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-visual {
    flex: 1;
    margin-top: -60px;
}

.about-visual img {
    width: 100%;
    height: auto;
}

.about-text {
    flex: 1;
    padding-right: 40px;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

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

.link-inline {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-inline:hover {
    color: #2980b9;
}

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #95a5a6;
}

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

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

.footer-column ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 25px 40px;
    box-shadow: 0 -5px 20px 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;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-cookie.accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.page-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.service-detail-image {
    flex: 0 0 48%;
    background-color: #e9ecef;
}

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

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

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

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

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin: 25px 0;
}

.cta-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

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

.cta-content-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.cta-content-centered p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    padding: 13px 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-left: 15px;
}

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

.about-hero {
    background-color: #f8f9fa;
    padding: 100px 40px 80px;
}

.about-hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-text h1 {
    font-size: 56px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.about-hero-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #5a6c7d;
}

.about-story {
    padding: 80px 40px;
}

.story-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.story-text-block {
    flex: 1;
}

.story-text-block h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.story-text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 18px;
}

.story-image-block {
    flex: 0 0 45%;
    background-color: #e9ecef;
}

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

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

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

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

.value-item {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

.team-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.team-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-intro p {
    font-size: 18px;
    line-height: 1.7;
}

.team-image {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #e9ecef;
}

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

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

.process-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 35px;
}

.process-step {
    flex: 1;
    padding: 35px;
    background-color: #f8f9fa;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 700;
}

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

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.contact-note p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6c7d;
}

.contact-visual {
    flex: 0 0 45%;
    background-color: #e9ecef;
}

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

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

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.thanks-service-info {
    background-color: #f8f9fa;
    padding: 20px;
    margin: 30px 0;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

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

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

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

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

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

.legal-updated {
    margin-top: 40px;
    font-style: italic;
    color: #95a5a6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #dee2e6;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 15px;
    color: #5a6c7d;
}

@media (max-width: 1024px) {
    .hero-content-offset {
        left: 5%;
        max-width: 450px;
        padding: 40px 35px;
    }

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

    .intro-offset,
    .about-preview,
    .service-detail-item {
        flex-direction: column;
        gap: 40px;
    }

    .service-grid-irregular {
        flex-direction: column;
    }

    .service-card.large,
    .service-card.medium,
    .service-card.small {
        flex: 1 1 100%;
    }

    .service-card.medium.offset {
        margin-left: 0;
    }

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

    .form-container-asymmetric {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        position: relative;
        left: 0;
        max-width: 100%;
        margin: 0;
    }

    .hero-image-block {
        width: 100%;
        height: 400px;
    }

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