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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

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

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

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

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

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

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

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.navbar {
    padding: 16px 0;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

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

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

.nav-menu a:hover {
    color: #27ae60;
}

.hero-split {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 24px;
}

.hero-left p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background-color: #27ae60;
    color: #ffffff;
}

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

.cta-secondary {
    background-color: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
}

.cta-secondary:hover {
    background-color: #27ae60;
    color: #ffffff;
}

.intro-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.intro-image {
    flex: 0 0 45%;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.benefits-asymmetric {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.benefit-block {
    background-color: #ffffff;
    padding: 40px;
    margin-bottom: 40px;
    border-left: 4px solid #27ae60;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

.benefit-block.offset-left {
    margin-right: 20%;
}

.benefit-block.offset-right {
    margin-left: 20%;
}

.benefit-block.offset-center {
    margin-left: 10%;
    margin-right: 10%;
}

.benefit-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

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

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

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 0 1 calc(50% - 15px);
    max-width: 550px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 24px 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    color: #555;
    margin: 0 24px 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 24px 16px;
}

.btn-select-service {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    margin: 0 24px 24px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.service-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

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

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

.form-info {
    flex: 1;
}

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

.form-info p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

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

.main-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

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

.testimonials-flex {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #27ae60;
    font-style: normal;
}

.final-cta {
    background-color: #27ae60;
    padding: 80px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 32px;
    opacity: 0.95;
}

.final-cta .cta-primary {
    background-color: #ffffff;
    color: #27ae60;
}

.final-cta .cta-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    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;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    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;
}

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

.page-hero {
    background-color: #27ae60;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.about-story-split {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.story-image {
    flex: 0 0 45%;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.expertise-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.expertise-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

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

.expertise-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #27ae60;
}

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

.approach-section {
    padding: 80px 20px;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.approach-content img {
    flex: 0 0 40%;
    border-radius: 8px;
    background-color: #ecf0f1;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.approach-text {
    flex: 1;
}

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

.approach-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

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

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

.value-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #27ae60;
}

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

.cta-section {
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
}

.services-detailed {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

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

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

.service-detail-image {
    flex: 0 0 45%;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 14px;
    line-height: 1.7;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.contact-section {
    padding: 60px 20px;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-details p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #27ae60;
}

.contact-email {
    font-weight: 600;
    color: #2c3e50;
}

.contact-image {
    flex: 0 0 45%;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.location-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.location-section p {
    font-size: 17px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 52px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-content > p {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
}

.thanks-details {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: left;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-details p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-details #service-confirmation {
    font-weight: 600;
    color: #27ae60;
    font-size: 18px;
}

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

.legal-content {
    padding: 60px 20px;
}

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

.legal-text h2 {
    font-size: 32px;
    margin-bottom: 16px;
    margin-top: 40px;
    color: #2c3e50;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #27ae60;
}

.legal-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

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

.legal-text a {
    color: #27ae60;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-split,
    .intro-wrapper,
    .approach-content,
    .about-story-split,
    .form-split,
    .contact-info-wrapper,
    .service-detail-item {
        flex-direction: column;
    }

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

    .hero-left h1,
    .page-hero h1 {
        font-size: 36px;
    }

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

    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .nav-menu {
        flex-direction: column;
        gap: 16px;
    }

    .benefit-block.offset-left,
    .benefit-block.offset-right,
    .benefit-block.offset-center {
        margin-left: 0;
        margin-right: 0;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}