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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #6fb3ff;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5282;
}

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

.ad-notice {
    font-size: 0.85rem;
    color: #718096;
    padding: 0.4rem 0.8rem;
    background-color: #f7fafc;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

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

.nav-split a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-split a:hover {
    color: #2c5282;
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 0;
}

.hero-left {
    flex: 1;
    padding: 4rem 5%;
    background-color: #f7fafc;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.hero-left p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-right {
    flex: 1;
    background-color: #cbd5e0;
}

.hero-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2c5282;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

.intro-split {
    display: flex;
    align-items: center;
    padding: 0;
}

.intro-left {
    flex: 1;
    padding: 4rem 5%;
}

.intro-left h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.intro-left p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.intro-right {
    flex: 1;
    background-color: #e2e8f0;
}

.intro-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

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

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

.section-header-centered h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.section-header-centered p {
    font-size: 1.15rem;
    color: #718096;
}

.service-row {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
}

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

.service-content {
    flex: 1;
}

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

.service-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.service-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #2d3748;
}

.service-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.service-visual {
    flex: 1;
    background-color: #e2e8f0;
}

.service-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5282;
    padding: 1rem 0;
}

.form-section-split {
    display: flex;
    background-color: #f7fafc;
    padding: 0;
    min-height: 600px;
}

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

.form-left h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    padding: 1rem 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #2c5282;
    color: #2d3748;
    font-weight: 500;
}

.form-right {
    flex: 1;
    padding: 4rem 5%;
    background-color: #ffffff;
}

.contact-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.trust-section {
    padding: 5rem 5%;
    background-color: #2c5282;
    color: #ffffff;
    text-align: center;
}

.trust-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.trust-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1.15rem;
    color: #e2e8f0;
}

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #edf2f7;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
    text-align: center;
}

.footer-split {
    background-color: #1a202c;
    color: #ffffff;
    padding: 3rem 5% 1.5rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.footer-column p {
    color: #cbd5e0;
    font-size: 0.95rem;
}

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

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

.footer-column ul li a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 1.5rem;
    text-align: center;
    color: #cbd5e0;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .service-row,
    .form-section-split {
        flex-direction: column;
    }

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

    .hero-left h1 {
        font-size: 2.25rem;
    }

    .nav-split {
        gap: 1rem;
    }

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

    .trust-grid {
        gap: 2rem;
    }
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: #2c5282;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-content .service-selected {
    font-weight: 600;
    color: #2c5282;
}

.btn-back-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #2c5282;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-back-home:hover {
    background-color: #1a365d;
}

.page-content {
    padding: 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 2rem;
}

.page-content h2 {
    font-size: 1.75rem;
    color: #2c5282;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.page-content h3 {
    font-size: 1.35rem;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.page-content p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: #4a5568;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #4a5568;
}

.page-content a {
    color: #2c5282;
    text-decoration: underline;
}

.contact-info {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 0.75rem;
}

.contact-info .email-display {
    color: #2d3748;
    font-weight: 500;
}

.about-hero {
    display: flex;
    align-items: center;
    padding: 0;
    margin-bottom: 4rem;
}

.about-hero-left {
    flex: 1;
    padding: 4rem 5%;
}

.about-hero-left h1 {
    font-size: 2.75rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.about-hero-left p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.7;
}

.about-hero-right {
    flex: 1;
    background-color: #e2e8f0;
}

.about-hero-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.values-section {
    padding: 4rem 5%;
    background-color: #f7fafc;
}

.values-section h2 {
    font-size: 2.25rem;
    text-align: center;
    color: #1a202c;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5282;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.value-card p {
    color: #4a5568;
    line-height: 1.7;
}