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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

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

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

.brand {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

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

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #555;
}

.hero-visual {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.cta-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    transition: color 0.3s ease;
}

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

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

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

.intro-image {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

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

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 19px;
    color: #555;
}

.service-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 450px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 250px;
    background-color: #e8ecef;
    overflow: hidden;
}

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

.service-info {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #555;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 20px;
}

.select-service {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

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

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

.benefits-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 17px;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 20px;
}

.benefits-visual {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

.form-section {
    background-color: #2c3e50;
    padding: 100px 40px;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
}

.form-header p {
    font-size: 18px;
    color: #ecf0f1;
}

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

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

.form-group label {
    font-size: 16px;
    margin-bottom: 8px;
    color: #ecf0f1;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #34495e;
    border-radius: 6px;
    background-color: #34495e;
    color: #ffffff;
    font-family: inherit;
}

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

.form-group option {
    background-color: #34495e;
    color: #ffffff;
}

.submit-button {
    background-color: #2ecc71;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #27ae60;
}

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

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

.trust-image {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

.trust-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.trust-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

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

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

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

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

.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: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 25px 40px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    color: #ecf0f1;
    font-size: 15px;
    flex: 1;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 15px;
}

.cookie-btn.accept {
    background-color: #2ecc71;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #7f8c8d;
}

.page-hero {
    background-color: #f8f9fa;
    padding: 100px 40px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

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

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.about-image {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

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

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 300px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

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

.team-image {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

.team-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.team-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.experience-section {
    background-color: #2c3e50;
    padding: 100px 40px;
}

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

.experience-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #ffffff;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #ecf0f1;
}

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

.approach-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.approach-image {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

.services-detailed {
    padding: 60px 40px;
}

.service-detail-item {
    max-width: 1400px;
    margin: 0 auto 100px;
}

.split-layout {
    display: flex;
    gap: 80px;
    align-items: stretch;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 20px;
}

.service-price-large {
    font-size: 42px;
    font-weight: 700;
    color: #2ecc71;
    margin-top: 20px;
    margin-bottom: 25px;
}

.services-cta-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
    text-align: center;
}

.services-cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

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

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.contact-visual {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

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

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

.additional-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

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

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

.office-image {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

.office-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.office-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.office-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

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

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
}

.thanks-service {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 35px;
    font-size: 17px;
    color: #2c3e50;
}

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

.next-steps-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 80px;
    padding: 0 40px;
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.next-steps-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.next-steps-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.steps-list {
    counter-reset: step-counter;
    list-style: none;
}

.steps-list li {
    font-size: 17px;
    margin-bottom: 20px;
    padding-left: 45px;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #3498db;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.next-steps-image {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

.thanks-additional {
    padding: 60px 40px;
}

.additional-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff3cd;
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid #ffc107;
}

.additional-box h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #856404;
}

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

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-page h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 19px;
    margin-bottom: 50px;
    color: #555;
    line-height: 1.8;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 25px;
}

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
    margin-left: 25px;
}

.legal-date {
    margin-top: 50px;
    font-style: italic;
    color: #95a5a6;
    font-size: 15px;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .benefits-split,
    .trust-split,
    .about-split,
    .team-split,
    .approach-split,
    .split-layout,
    .contact-split,
    .next-steps-split,
    .office-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .trust-split.reverse,
    .team-split.reverse,
    .split-layout.reverse,
    .office-split.reverse {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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