* {
    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;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-medium {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 25px 40px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #34495e;
}

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand-area {
    flex: 1;
    min-width: 250px;
}

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

.nav-main {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-disclosure {
    background-color: #f39c12;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #ecf0f1;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.hero-text-wrapper {
    max-width: 550px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
    color: #2c3e50;
}

.hero-lead {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #34495e;
}

.hero-cta {
    display: flex;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    border: 2px solid #3498db;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.intro-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.intro-content {
    text-align: center;
}

.section-heading {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #2c3e50;
}

.section-heading-center {
    font-size: 38px;
    margin-bottom: 50px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.service-card-featured {
    flex: 1 1 calc(50% - 13px);
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.service-card-standard {
    flex: 1 1 calc(33.333% - 17px);
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.service-card-wide {
    flex: 1 1 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.card-image-container {
    height: 240px;
    overflow: hidden;
}

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

.card-content {
    padding: 30px;
}

.card-content h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2c3e50;
}

.card-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.price-tag {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
}

.split-card-content {
    display: flex;
    min-height: 300px;
}

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

.split-left h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2c3e50;
}

.split-left p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.split-right {
    flex: 1;
    overflow: hidden;
}

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

.trust-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.trust-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.trust-content {
    flex: 1;
}

.trust-content h3 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #2c3e50;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item {
    padding: 20px 0;
    border-left: 4px solid #3498db;
    padding-left: 25px;
}

.trust-number {
    font-size: 42px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #34495e;
}

.testimonials-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-block {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid #3498db;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-block p {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    color: #34495e;
    margin-bottom: 15px;
}

.testimonial-block cite {
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
}

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

.form-wrapper {
    background-color: #ecf0f1;
    padding: 60px;
    border-radius: 10px;
}

.form-wrapper h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2c3e50;
}

.form-intro {
    font-size: 17px;
    margin-bottom: 40px;
    color: #34495e;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #bdc3c7;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.disclaimer-box {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 30px;
}

.disclaimer-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #856404;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
}

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

.footer-layout {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h5 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

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

.page-title {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 800;
    color: #2c3e50;
}

.page-subtitle {
    font-size: 20px;
    color: #34495e;
}

.services-detailed {
    padding: 80px 0;
}

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

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

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

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

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

.service-features {
    margin: 25px 0;
    padding-left: 20px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 8px;
}

.price-display {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 25px;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.cta-services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cta-box {
    background-color: #3498db;
    color: #ffffff;
    padding: 60px;
    border-radius: 10px;
    text-align: center;
}

.cta-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

.about-intro {
    padding: 80px 0;
}

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

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

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

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.team-section {
    padding: 80px 0;
}

.team-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.team-member {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.member-info {
    background-color: #ecf0f1;
    padding: 35px;
    border-radius: 8px;
}

.member-info h4 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #2c3e50;
}

.member-role {
    display: block;
    font-size: 15px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #34495e;
}

.process-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.step-number {
    font-size: 36px;
    font-weight: 800;
    color: #3498db;
    min-width: 60px;
}

.step-content h4 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #2c3e50;
}

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

.cta-about {
    padding: 80px 0;
}

.cta-box-centered {
    background-color: #ecf0f1;
    padding: 60px;
    border-radius: 10px;
    text-align: center;
}

.cta-box-centered h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.cta-box-centered p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #34495e;
}

.contact-info-section {
    padding: 80px 0;
}

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

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

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

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

.info-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #2c3e50;
}

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

.contact-map-placeholder {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

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

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

.help-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.help-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2c3e50;
}

.help-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #34495e;
}

.contact-cta {
    padding: 80px 0;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-content {
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 48px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-title {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: #34495e;
}

.thanks-details {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.thanks-details p {
    font-size: 16px;
    color: #2c3e50;
}

.thanks-info {
    text-align: left;
    margin: 40px auto;
    max-width: 600px;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.next-steps {
    list-style: none;
    padding: 0;
}

.next-steps li {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.thanks-reminder {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.thanks-reminder p {
    font-size: 15px;
    color: #856404;
    margin: 0;
}

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

.legal-page {
    padding: 80px 0;
}

.legal-title {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 800;
    color: #2c3e50;
}

.legal-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

.legal-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #34495e;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .container-wide,
    .container-medium,
    .container-narrow {
        padding: 0 20px;
    }

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

    .hero-left,
    .hero-right {
        flex: none;
        width: 100%;
        min-height: 400px;
    }

    .hero-left {
        padding: 50px 30px;
    }

    .hero-title {
        font-size: 36px;
    }

    .nav-main {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .nav-list {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        text-align: center;
    }

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

    .service-card-featured,
    .service-card-standard,
    .service-card-wide {
        flex: none;
        width: 100%;
    }

    .trust-split,
    .about-split,
    .contact-layout {
        flex-direction: column;
    }

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

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

    .form-wrapper {
        padding: 40px 30px;
    }

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

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