* {
    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: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1 1 60%;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    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: 1px solid #ffffff;
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-notice {
    font-size: 0.75rem;
    color: #95a5a6;
    padding: 0.25rem 0.75rem;
    border: 1px solid #ecf0f1;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

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

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

.hero-text {
    flex: 1 1 50%;
    padding: 8% 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1 1 50%;
    background-color: #bdc3c7;
    position: relative;
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    min-height: 70vh;
}

.intro-image {
    flex: 1 1 40%;
    background-color: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

.intro-content {
    flex: 1 1 60%;
    padding: 6% 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.benefits-split {
    display: flex;
    min-height: 75vh;
    background-color: #ecf0f1;
}

.benefits-text {
    flex: 1 1 55%;
    padding: 6% 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.benefit-item {
    margin-bottom: 2rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #27ae60;
    font-weight: 600;
}

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
}

.benefits-visual {
    flex: 1 1 45%;
    background-color: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

.services-cards {
    padding: 5% 5%;
    background-color: #ffffff;
}

.services-cards h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 320px;
    background-color: #ffffff;
    border: 1px solid #ecf0f1;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100%;
    height: 240px;
    background-color: #bdc3c7;
    overflow: hidden;
}

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

.card-content {
    padding: 1.75rem;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-weight: 600;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #7f8c8d;
    margin-bottom: 1.25rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.25rem;
}

.btn-select {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #27ae60;
}

.form-split {
    display: flex;
    min-height: 70vh;
    background-color: #f8f9fa;
}

.form-intro {
    flex: 1 1 40%;
    padding: 6% 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #34495e;
    color: #ffffff;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #ecf0f1;
}

.form-container {
    flex: 1 1 60%;
    padding: 6% 7%;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

form {
    width: 100%;
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    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: #27ae60;
}

.form-group textarea {
    resize: vertical;
}

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

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.trust-split {
    display: flex;
    min-height: 65vh;
    background-color: #ffffff;
}

.trust-content {
    flex: 1 1 60%;
    padding: 6% 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.trust-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.trust-image {
    flex: 1 1 40%;
    background-color: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

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

.footer-left {
    flex: 1 1 50%;
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.disclaimer {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #95a5a6;
    margin-top: 1rem;
}

.footer-right {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #27ae60;
}

.footer-copy {
    font-size: 0.875rem;
    color: #95a5a6;
    margin-top: 2rem;
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    background-color: #f8f9fa;
}

.page-hero-split .hero-text {
    flex: 1 1 45%;
    background-color: #34495e;
}

.page-hero-split .hero-text h1 {
    font-size: 3rem;
}

.page-hero-split .hero-image {
    flex: 1 1 55%;
}

.about-split {
    display: flex;
    min-height: 70vh;
}

.about-image {
    flex: 1 1 45%;
    background-color: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

.about-content {
    flex: 1 1 55%;
    padding: 6% 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.values-split {
    display: flex;
    min-height: 75vh;
    background-color: #ecf0f1;
}

.values-text {
    flex: 1 1 60%;
    padding: 6% 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.value-block {
    margin-bottom: 2rem;
}

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #27ae60;
    font-weight: 600;
}

.value-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
}

.values-visual {
    flex: 1 1 40%;
    background-color: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

.team-split {
    display: flex;
    min-height: 70vh;
    background-color: #ffffff;
}

.team-content {
    flex: 1 1 55%;
    padding: 6% 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.team-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.team-image {
    flex: 1 1 45%;
    background-color: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

.approach-split {
    display: flex;
    min-height: 70vh;
    background-color: #f8f9fa;
}

.approach-image {
    flex: 1 1 40%;
    background-color: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

.approach-content {
    flex: 1 1 60%;
    padding: 6% 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.services-detail {
    background-color: #ffffff;
}

.service-detail-split {
    display: flex;
    min-height: 65vh;
    border-bottom: 1px solid #ecf0f1;
}

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

.detail-content {
    flex: 1 1 55%;
    padding: 6% 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: #2c3e50;
    font-weight: 700;
}

.detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.detail-image {
    flex: 1 1 45%;
    background-color: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

.price-box {
    background-color: #ecf0f1;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.price-label {
    font-size: 0.875rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.price-value {
    font-size: 1.75rem;
    color: #27ae60;
    font-weight: 700;
}

.contact-split {
    display: flex;
    min-height: 70vh;
}

.contact-info {
    flex: 1 1 50%;
    padding: 6% 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #27ae60;
    font-weight: 600;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
}

.contact-visual {
    flex: 1 1 50%;
    background-color: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

.location-split {
    display: flex;
    min-height: 50vh;
    background-color: #ecf0f1;
}

.location-content {
    flex: 1 1 60%;
    padding: 5% 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.location-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #34495e;
}

.location-image {
    flex: 1 1 40%;
    background-color: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

.thanks-split {
    display: flex;
    min-height: 75vh;
}

.thanks-content {
    flex: 1 1 55%;
    padding: 6% 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ecf0f1;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
    font-weight: 700;
}

.thanks-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #34495e;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.thanks-image {
    flex: 1 1 45%;
    background-color: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5% 5%;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content .updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #34495e;
}

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

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .benefits-split,
    .form-split,
    .trust-split,
    .page-hero-split,
    .about-split,
    .values-split,
    .team-split,
    .approach-split,
    .service-detail-split,
    .contact-split,
    .location-split,
    .thanks-split {
        flex-direction: column;
    }

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

    .hero-text h1,
    .page-hero-split .hero-text h1 {
        font-size: 2.5rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .footer-split {
        flex-direction: column;
        gap: 2rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-end;
    }
}

@media (max-width: 640px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .header-right {
        width: 100%;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}
