* {
    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: #1a1a1a;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-banner.active {
    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;
    margin: 0;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

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

.btn-accept {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1d4ed8;
}

.btn-reject {
    background-color: #f3f4f6;
    color: #374151;
}

.btn-reject:hover {
    background-color: #e5e7eb;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.main-nav a {
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2563eb;
}

.ad-disclosure {
    font-size: 12px;
    color: #9ca3af;
    font-style: italic;
    padding-left: 16px;
    border-left: 1px solid #e5e7eb;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #f9fafb;
}

.hero-text-content {
    max-width: 540px;
}

.hero-text-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #111827;
    font-weight: 700;
}

.hero-text-content p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    position: relative;
}

.hero-image-wrap {
    width: 100%;
    height: 100%;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #1d4ed8;
}

.cta-secondary {
    display: inline-block;
    background-color: #f3f4f6;
    color: #1f2937;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #e5e7eb;
}

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

.section-intro {
    text-align: center;
}

.section-intro h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #111827;
    font-weight: 700;
}

.section-intro p {
    font-size: 19px;
    color: #6b7280;
    line-height: 1.8;
}

.approach-split {
    display: flex;
    min-height: 500px;
}

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

.approach-image,
.approach-content {
    flex: 1;
}

.approach-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9fafb;
}

.approach-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111827;
    font-weight: 700;
}

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

.image-container {
    width: 100%;
    height: 100%;
}

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

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

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #111827;
    font-weight: 700;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.service-card-split {
    display: flex;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.service-card-image {
    flex: 0 0 400px;
}

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

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

.service-card-content h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #111827;
    font-weight: 700;
}

.service-card-content p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
}

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

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

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #111827;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
}

.form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

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

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

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

.trust-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111827;
    font-weight: 700;
}

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

.trust-stats {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.5;
}

.main-footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 60px 20px 20px;
}

.footer-content-split {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column h5 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 600;
}

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

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

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

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    background-color: #1f2937;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.6;
}

.footer-disclaimer strong {
    color: #d1d5db;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    font-size: 13px;
    color: #6b7280;
}

.page-header {
    background-color: #f9fafb;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #111827;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.content-wrapper h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #111827;
    font-weight: 700;
}

.content-wrapper h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1f2937;
    font-weight: 600;
}

.content-wrapper p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.7;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.content-wrapper li {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.6;
}

.services-page-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 60px 20px;
}

.service-detail-card {
    display: flex;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image {
    flex: 0 0 450px;
}

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

.service-detail-content {
    flex: 1;
    padding: 40px;
}

.service-detail-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #111827;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-detail-content .price {
    display: block;
    margin-top: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
}

.contact-page-split {
    display: flex;
    min-height: 500px;
}

.contact-info-section {
    flex: 1;
    background-color: #111827;
    color: #ffffff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #9ca3af;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.6;
}

.about-split-section {
    display: flex;
    margin-bottom: 60px;
}

.about-split-section.reverse {
    flex-direction: row-reverse;
}

.about-text,
.about-image-side {
    flex: 1;
}

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

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111827;
    font-weight: 700;
}

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

.about-image-side {
    position: relative;
}

.about-image-container {
    width: 100%;
    height: 100%;
}

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

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 100px 20px;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #111827;
    font-weight: 700;
}

.thanks-container p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-split,
    .approach-split,
    .form-container-split,
    .trust-content-split,
    .footer-content-split,
    .contact-page-split,
    .about-split-section,
    .service-card-split,
    .service-detail-card {
        flex-direction: column;
    }

    .approach-split.reverse,
    .about-split-section.reverse {
        flex-direction: column;
    }

    .hero-left {
        padding: 40px 20px;
    }

    .hero-text-content h1 {
        font-size: 32px;
    }

    .service-card-image,
    .service-detail-image {
        flex: 0 0 300px;
    }

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

    .trust-stats {
        flex: 1;
    }
}