* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 30px;
}

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

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

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

.hero-content {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    background-color: #95a5a6;
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.intro-offset {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1.5;
}

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

.intro-text p {
    font-size: 18px;
    color: #555;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #555;
}

.services-alternating {
    padding: 80px 5%;
    background-color: #ffffff;
}

.services-alternating h2 {
    font-size: 36px;
    margin-bottom: 60px;
    text-align: center;
}

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

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

.service-visual {
    flex: 1;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
}

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

.service-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.select-service {
    padding: 12px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2980b9;
}

.trust-block {
    display: flex;
    background-color: #ecf0f1;
    padding: 60px 5%;
    gap: 50px;
    align-items: center;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 18px;
    color: #555;
}

.trust-image {
    flex: 1;
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

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

.form-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

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

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group {
    margin-bottom: 20px;
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    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: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.footer-split {
    display: flex;
    padding: 60px 5%;
    background-color: #2c3e50;
    color: #ecf0f1;
    gap: 60px;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
}

.footer-left h3,
.footer-center h4,
.footer-right h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-left p {
    color: #bdc3c7;
}

.footer-center a,
.footer-right a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-center a:hover,
.footer-right a:hover {
    color: #3498db;
}

.footer-bottom {
    background-color: #1a252f;
    color: #bdc3c7;
    padding: 30px 5%;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ecf0f1;
    padding: 20px;
    display: none;
    z-index: 10000;
}

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

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

.cookie-content p {
    flex: 1;
}

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

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

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 5%;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

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

.about-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

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

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

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

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

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

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
}

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

.value-card p {
    font-size: 16px;
    color: #555;
}

.team-intro {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.team-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.team-image {
    flex: 1;
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

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

.approach-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 16px;
    color: #555;
}

.services-detail {
    padding: 60px 5%;
}

.service-block {
    margin-bottom: 80px;
}

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

.service-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ecf0f1;
}

.service-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.price-large {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.service-body {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.service-description {
    flex: 1.5;
}

.service-description p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.service-description h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 20px;
}

.service-description ul {
    margin-left: 20px;
}

.service-description li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
}

.service-cta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-cta img {
    width: 100%;
    border-radius: 8px;
}

.cta-banner {
    background-color: #3498db;
    color: #ffffff;
    padding: 60px 5%;
    text-align: center;
}

.cta-banner h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-banner .cta-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-banner .cta-primary:hover {
    background-color: #ecf0f1;
}

.contact-layout {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
}

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

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

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

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

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

.info-note {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 4px;
    margin-top: 30px;
}

.info-note p {
    font-size: 15px;
    color: #555;
}

.contact-visual {
    flex: 1;
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-additional {
    padding: 60px 5%;
    background-color: #ecf0f1;
}

.additional-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.additional-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    max-width: 800px;
}

.thanks-container {
    padding: 100px 5%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    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: 20px;
}

.thanks-main {
    font-size: 20px;
    color: #555;
    margin-bottom: 15px;
}

.thanks-detail {
    font-size: 18px;
    color: #3498db;
    margin-bottom: 15px;
    font-weight: 600;
}

.thanks-next {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

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

.btn-primary,
.btn-secondary {
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.legal-page {
    padding: 60px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

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

.legal-content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

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

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

.legal-update {
    margin-top: 40px;
    font-style: italic;
    color: #7f8c8d;
}

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

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

.cookies-table th {
    background-color: #ecf0f1;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    font-size: 15px;
    color: #555;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-offset,
    .service-row,
    .trust-block,
    .about-split,
    .values-grid,
    .team-intro,
    .service-body,
    .contact-layout,
    .footer-split {
        flex-direction: column;
    }

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

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

    .nav-right {
        gap: 15px;
    }

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

    .cookie-content {
        flex-direction: column;
    }

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