* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-cookie,
.btn-cookie-secondary {
    padding: 0.625rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #3182ce;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #2c5282;
}

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

.btn-cookie-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 0.8125rem;
    color: #718096;
    padding: 0.3125rem 0.625rem;
    border: 1px solid #cbd5e0;
    border-radius: 0.25rem;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background: #f7fafc;
}

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

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 0.9375rem 2.5rem;
    background: #2c5282;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1a365d;
    transform: translateY(-2px);
}

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

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

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

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

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

.intro-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    padding: 4rem;
}

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

.intro-content p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

.services-preview {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

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

.section-header-center p {
    font-size: 1.125rem;
    color: #718096;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 450px;
    display: flex;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-image {
    flex: 0 0 200px;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.375rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.service-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    flex: 1;
}

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

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.cta-secondary {
    display: inline-block;
    padding: 0.9375rem 2.5rem;
    background: transparent;
    color: #2c5282;
    border: 2px solid #2c5282;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2c5282;
    color: #ffffff;
}

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

.contact-left-content {
    flex: 1;
    padding: 4rem;
    background: #2c5282;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-left-content p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    opacity: 0.95;
}

.contact-right-form {
    flex: 1;
    padding: 4rem;
    background: #f7fafc;
    display: flex;
    align-items: center;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9375rem;
    margin-bottom: 1.5rem;
    border: 1px solid #cbd5e0;
    background: #ffffff;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-column p {
    margin-bottom: 0.625rem;
    line-height: 1.7;
}

.footer-column a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 0.625rem;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #3182ce;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #cbd5e0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    text-align: center;
    color: #a0aec0;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
    padding: 2rem 1.5rem;
    text-align: center;
    background: #f7fafc;
    border-top: 4px solid #2c5282;
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.process-step p {
    color: #4a5568;
    line-height: 1.6;
}

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

.info-section h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin-bottom: 2rem;
}

.info-section p {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.info-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.info-section li {
    color: #4a5568;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.info-section h3 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.info-section strong {
    color: #1a202c;
}

.contact-info-box {
    background: #f7fafc;
    padding: 2rem;
    margin-top: 2rem;
    border-left: 4px solid #2c5282;
}

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

.services-list-page {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-list-page h1 {
    font-size: 2.75rem;
    color: #1a202c;
    margin-bottom: 1rem;
    text-align: center;
}

.services-list-page .intro-text {
    text-align: center;
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.service-item-full {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e2e8f0;
}

.service-item-full:last-child {
    border-bottom: none;
}

.service-item-full h2 {
    font-size: 1.875rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.service-item-full .price-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5282;
    margin: 1.5rem 0;
}

.service-item-full p {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-item-full ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.service-item-full li {
    color: #4a5568;
    margin-bottom: 0.625rem;
    line-height: 1.7;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: #f7fafc;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 4rem 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.thanks-content .selected-service {
    background: #e6fffa;
    padding: 1rem;
    border-left: 4px solid #38b2ac;
    margin: 2rem 0;
}

.thanks-content .selected-service strong {
    color: #234e52;
}

.thanks-content .cta-primary {
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .contact-split {
        flex-direction: column;
    }

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

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

    .service-image {
        flex: 0 0 250px;
    }

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

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

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

    .services-grid-split {
        flex-direction: column;
    }
}