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

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

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

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

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

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    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: #34495e;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-left p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 2rem;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

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

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

.split-intro {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

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

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

.split-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.2rem;
}

.services-preview {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-header p {
    font-size: 1.1rem;
    color: #34495e;
}

.service-split {
    display: flex;
    margin-bottom: 3rem;
}

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

.service-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.5rem;
}

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

.service-image {
    flex: 1;
    overflow: hidden;
}

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

.select-service {
    padding: 0.8rem 1.8rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.split-insight {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

.insight-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.insight-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.2rem;
}

.insight-image {
    flex: 1;
    overflow: hidden;
}

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

.additional-services {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.additional-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.service-row-split {
    display: flex;
    gap: 2rem;
}

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

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.contact-form-section {
    background-color: #ecf0f1;
    padding: 5rem 2rem;
    margin-top: 5rem;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
}

.form-wrapper {
    flex: 1;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

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

.disclaimer-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.disclaimer-content {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 2rem;
    border-radius: 4px;
}

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #856404;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

.footer-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

.page-hero-split {
    display: flex;
    min-height: 450px;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.hero-text-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-text-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #34495e;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

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

.about-story-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.story-image {
    flex: 1;
    overflow: hidden;
}

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

.story-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.2rem;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

.values-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.values-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.2rem;
}

.values-visual {
    flex: 1;
    overflow: hidden;
}

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

.process-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.process-split {
    display: flex;
    margin-bottom: 2.5rem;
    align-items: center;
}

.process-split.reverse {
    flex-direction: row-reverse;
}

.process-content {
    flex: 1;
    padding: 2.5rem;
}

.process-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.process-visual {
    flex: 1;
    height: 320px;
    overflow: hidden;
}

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

.commitment-section {
    background-color: #ecf0f1;
    padding: 5rem 2rem;
    margin-top: 5rem;
}

.commitment-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.commitment-text {
    flex: 1.5;
}

.commitment-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.commitment-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.2rem;
}

.commitment-cta {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.commitment-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.services-detailed {
    max-width: 1400px;
    margin: 4rem auto;
}

.service-detail-split {
    display: flex;
    margin-bottom: 4rem;
}

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

.service-info {
    flex: 1;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.2rem;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.service-image-block {
    flex: 1;
    overflow: hidden;
}

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

.service-cta-section {
    background-color: #ecf0f1;
    padding: 4rem 2rem;
    margin-top: 3rem;
}

.cta-split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-text p {
    font-size: 1.1rem;
    color: #34495e;
}

.cta-action {
    flex: 0;
}

.contact-details-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.contact-info-block {
    flex: 1;
    padding: 4rem;
}

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

.info-item {
    margin-bottom: 2.5rem;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
}

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

.contact-visual {
    flex: 1;
    overflow: hidden;
}

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

.location-context {
    max-width: 1400px;
    margin: 4rem auto;
}

.context-split {
    display: flex;
}

.context-image {
    flex: 1;
    overflow: hidden;
}

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

.context-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.context-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.context-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.2rem;
}

.contact-expectations {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.contact-expectations h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.expectations-layout {
    display: flex;
    gap: 2rem;
}

.expectation-block {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.expectation-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.thanks-hero {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

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

.thanks-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.service-confirmation {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.service-confirmation p {
    font-size: 1.1rem;
    color: #155724;
}

.next-steps {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.next-steps p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.legal-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

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

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-split,
    .split-intro,
    .split-insight,
    .service-split,
    .service-detail-split,
    .about-story-split,
    .values-split,
    .process-split,
    .commitment-split,
    .contact-details-split,
    .context-split,
    .page-hero-split,
    .form-container-split,
    .cta-split-layout,
    .service-row-split,
    .expectations-layout {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-text-content,
    .split-text,
    .service-content,
    .service-info,
    .story-content,
    .values-text,
    .process-content,
    .commitment-text,
    .contact-info-block,
    .context-text,
    .insight-text {
        padding: 2rem;
    }

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

    .navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

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

    .footer-content-split {
        flex-direction: column;
    }
}