* {
    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: 10000;
    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;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 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: rgba(255, 255, 255, 0.1);
}

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

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #5a6c7d;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-color: #e8e8e8;
    position: relative;
}

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

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

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

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.intro-split {
    display: flex;
    padding: 80px 0;
    max-width: 1400px;
    margin: 0 auto;
}

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

.intro-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.intro-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.intro-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.services-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header-centered p {
    font-size: 18px;
    color: #5a6c7d;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-split {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.service-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.service-details {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-details p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #5a6c7d;
}

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

.btn-select {
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.form-section-split {
    display: flex;
    min-height: 700px;
}

.form-visual {
    flex: 1;
    background-color: #e8e8e8;
}

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

.form-container {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-container > p {
    font-size: 16px;
    margin-bottom: 32px;
    color: #5a6c7d;
}

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

.selected-service-display {
    background-color: #e8f5e9;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 8px;
}

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

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

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

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

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

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

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

.trust-content-centered {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-content-centered h2 {
    font-size: 40px;
    margin-bottom: 48px;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    max-width: 350px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.trust-item p {
    font-size: 16px;
    color: #5a6c7d;
}

.testimonial-split {
    display: flex;
    background-color: #f8f9fa;
}

.testimonial-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content blockquote {
    border-left: 4px solid #3498db;
    padding-left: 32px;
}

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

.testimonial-content footer {
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

.testimonial-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.disclaimer-section {
    background-color: #ecf0f1;
    padding: 40px;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6c7d;
}

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

.footer-column ul li {
    margin-bottom: 8px;
}

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

.footer-column a:hover {
    color: #ffffff;
}

.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: #bdc3c7;
}

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

.page-hero-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero-content h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #2c3e50;
}

.page-hero-content p {
    font-size: 18px;
    color: #5a6c7d;
}

.page-hero-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.story-split {
    display: flex;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.story-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

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

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

.story-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.values-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.values-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.values-header-centered h2 {
    font-size: 40px;
    color: #2c3e50;
}

.values-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

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

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

.value-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.team-split {
    display: flex;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.team-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.process-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.process-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.process-header-centered h2 {
    font-size: 40px;
    color: #2c3e50;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.process-step-split {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

.step-number {
    font-size: 72px;
    font-weight: 700;
    color: #3498db;
    opacity: 0.3;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-content p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.6;
}

.cta-about {
    background-color: #3498db;
    padding: 80px 40px;
}

.cta-content-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

.cta-content-centered p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

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

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

.services-detail-section {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #5a6c7d;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-bottom: 24px;
}

.feature-list li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.pricing-info-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.pricing-info-content {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-info-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.included-grid {
    display: flex;
    gap: 32px;
}

.included-item {
    flex: 1;
}

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

.included-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-info-split {
    display: flex;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

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

.contact-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.no-link {
    color: #2c3e50;
    font-weight: 600;
}

.contact-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.contact-note-section {
    background-color: #f8f9fa;
    padding: 60px 40px;
}

.contact-note-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-note-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-note-content p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-note-content a {
    color: #3498db;
    text-decoration: underline;
}

.service-area-section {
    padding: 60px 40px;
}

.service-area-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.service-area-content p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 16px;
}

.region-list {
    list-style: none;
    margin: 24px 0;
    padding-left: 20px;
}

.region-list li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.region-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.thanks-section {
    padding: 100px 40px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-content > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #5a6c7d;
    line-height: 1.6;
}

.thanks-service-info {
    background-color: #e8f5e9;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-service-info p {
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
}

.thanks-next-steps {
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c3e50;
    text-align: center;
}

.next-step {
    margin-bottom: 24px;
}

.next-step h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.next-step p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

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

.legal-page {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
}

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

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
    list-style: disc;
}

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

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

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-split,
    .intro-split,
    .service-card-split,
    .form-section-split,
    .testimonial-split,
    .page-hero-split,
    .story-split,
    .team-split,
    .contact-info-split,
    .service-detail-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .service-card-split.reverse,
    .story-split.reverse,
    .process-step-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .service-details,
    .form-container,
    .testimonial-content,
    .story-content,
    .team-content,
    .contact-details,
    .service-detail-content {
        padding: 40px 24px;
    }

    .trust-grid,
    .values-grid-split,
    .included-grid,
    .thanks-actions {
        flex-direction: column;
    }

    .process-step-split {
        flex-direction: column;
        align-items: flex-start;
    }

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