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

.ad-notice {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navigation {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 38px;
    z-index: 99;
}

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

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #16a085;
}

.hero-full {
    width: 100%;
    margin-bottom: 0;
}

.hero-image {
    height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #34495e;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.45);
    padding: 60px 40px;
    text-align: center;
    max-width: 720px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 19px;
    line-height: 1.6;
}

.intro-narrow {
    background-color: #f8f9fa;
    padding: 80px 30px;
}

.content-wrap {
    max-width: 680px;
    margin: 0 auto;
}

.intro-narrow h2 {
    font-size: 34px;
    margin-bottom: 28px;
    color: #2c3e50;
    line-height: 1.4;
}

.intro-narrow p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
}

.split-visual-left {
    display: flex;
    background-color: #ffffff;
    padding: 0;
    min-height: 500px;
}

.visual-block {
    flex: 1;
    background-color: #ecf0f1;
}

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

.text-block {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-block h3 {
    font-size: 30px;
    margin-bottom: 22px;
    color: #2c3e50;
}

.text-block p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #495057;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #495057;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a085;
    font-weight: bold;
    font-size: 18px;
}

.services-preview {
    background-color: #ecf0f1;
    padding: 90px 30px;
}

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

.section-header-center h2 {
    font-size: 36px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 17px;
    color: #495057;
}

.service-cards-stacked {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

.card-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

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

.card-content h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.card-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.6;
}

.price {
    font-size: 20px;
    font-weight: 600;
    color: #16a085;
}

.cta-inline {
    text-align: center;
    margin-top: 50px;
}

.btn-primary {
    display: inline-block;
    background-color: #16a085;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #138d75;
}

.form-section {
    background-color: #ffffff;
    padding: 90px 30px;
}

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

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

.form-container > p {
    text-align: center;
    color: #495057;
    margin-bottom: 40px;
    font-size: 16px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    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: #16a085;
}

.btn-submit {
    background-color: #16a085;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #138d75;
}

.trust-block {
    background-color: #34495e;
    padding: 70px 30px;
}

.trust-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    color: #ecf0f1;
}

.trust-content h3 {
    font-size: 30px;
    margin-bottom: 24px;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.7;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #ffffff;
}

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

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

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

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

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

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

.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;
}

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

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

.btn-accept {
    background-color: #16a085;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #138d75;
}

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #6c7a7b;
}

.page-header {
    background-color: #34495e;
    color: #ffffff;
    padding: 70px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #ecf0f1;
}

.services-detailed {
    padding: 60px 30px;
    background-color: #f8f9fa;
}

.service-detail-block {
    max-width: 1100px;
    margin: 0 auto 50px;
    display: flex;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

.detail-visual {
    flex: 1;
    background-color: #ecf0f1;
}

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

.detail-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.price-info {
    font-size: 22px;
    font-weight: 600;
    color: #16a085;
    margin: 24px 0 16px;
}

.note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.about-intro {
    background-color: #ffffff;
    padding: 80px 30px;
}

.values-section {
    background-color: #ecf0f1;
    padding: 80px 30px;
}

.values-header {
    text-align: center;
    margin-bottom: 50px;
}

.values-header h2 {
    font-size: 36px;
    color: #2c3e50;
}

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

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

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

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

.team-visual {
    background-color: #ffffff;
    padding: 0;
}

.team-visual .visual-block {
    width: 100%;
}

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

.visual-caption {
    text-align: center;
    padding: 20px 30px;
    background-color: #f8f9fa;
}

.visual-caption p {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

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

.experience-block {
    background-color: #16a085;
    padding: 70px 30px;
}

.experience-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.experience-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
}

.experience-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-details {
    background-color: #ffffff;
    padding: 80px 30px;
}

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

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

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

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

.info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

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

.contact-visual {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 6px;
    overflow: hidden;
}

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

.location-info {
    background-color: #f8f9fa;
    padding: 80px 30px;
}

.additional-info {
    background-color: #ffffff;
    padding: 80px 30px;
}

.info-blocks {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.info-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 6px;
}

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

.info-card p {
    font-size: 15px;
    color: #495057;
    line-height: 1.7;
}

.thanks-section {
    background-color: #f8f9fa;
    padding: 120px 30px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 16px;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #7f8c8d;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #6c7a7b;
}

.legal-page {
    background-color: #ffffff;
    padding: 60px 30px 80px;
}

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

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

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

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

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

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

.legal-content a {
    color: #16a085;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #138d75;
}

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

    .split-visual-left,
    .service-card,
    .service-detail-block,
    .contact-grid,
    .info-blocks {
        flex-direction: column;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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