* {
    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: #2d3748;
    background: #ffffff;
}

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

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

.ad-disclosure {
    background: #fef5e7;
    color: #744210;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #f0e7d8;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.nav-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
}

.nav-right {
    display: flex;
    gap: 35px;
}

.nav-right a {
    font-size: 15px;
    color: #4a5568;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #2d3748;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

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

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

.hero-content p {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 35px;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #2b6cb0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
    cursor: pointer;
}

.cta-primary:hover {
    background: #2c5282;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    min-height: 70vh;
}

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

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

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

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a202c;
    font-weight: 700;
}

.intro-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-block {
    padding: 100px 60px;
    background: #edf2f7;
}

.values-block h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

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

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

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d3748;
    font-weight: 600;
}

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

.services-preview {
    padding: 100px 60px;
    background: #ffffff;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.services-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.services-intro p {
    font-size: 18px;
    color: #4a5568;
}

.services-display {
    max-width: 1300px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    margin-bottom: 60px;
    min-height: 400px;
}

.service-visual {
    flex: 1;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    background: #f7fafc;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.service-details p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

.price-tag {
    font-size: 24px;
    color: #2b6cb0;
    font-weight: 700;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 32px;
    background: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background: #2c5282;
}

.form-section {
    padding: 100px 60px;
    background: #2d3748;
    color: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-container p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #cbd5e0;
}

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

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #4a5568;
    border-radius: 6px;
    font-size: 15px;
    background: #1a202c;
    color: #ffffff;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: #718096;
}

.submit-btn {
    padding: 16px 40px;
    background: #38a169;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #2f855a;
}

.submit-btn:disabled {
    background: #4a5568;
    cursor: not-allowed;
}

.testimonials-split {
    display: flex;
    min-height: 60vh;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #f7fafc;
    gap: 40px;
}

blockquote {
    border-left: 4px solid #2b6cb0;
    padding-left: 25px;
}

blockquote p {
    font-size: 19px;
    line-height: 1.6;
    color: #2d3748;
    margin-bottom: 15px;
    font-style: italic;
}

cite {
    font-size: 15px;
    color: #718096;
    font-style: normal;
}

.testimonial-image {
    flex: 1;
    overflow: hidden;
}

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

.site-footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 60px 60px 30px;
}

.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

.footer-col a {
    display: block;
    margin-bottom: 12px;
    color: #cbd5e0;
    transition: color 0.3s;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 25px;
    background: #2d3748;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #a0aec0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 25px 60px;
    display: none;
    z-index: 1000;
    border-top: 3px solid #2b6cb0;
}

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

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept {
    background: #38a169;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #2f855a;
}

.cookie-reject {
    background: #4a5568;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #2d3748;
}

.about-hero {
    padding: 100px 60px;
    background: #f7fafc;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a202c;
    font-weight: 800;
}

.about-hero p {
    font-size: 20px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1.5;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a202c;
    font-weight: 700;
}

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

.about-sidebar {
    flex: 1;
    background: #edf2f7;
    padding: 40px;
    border-radius: 8px;
    align-self: flex-start;
}

.about-sidebar h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2d3748;
    font-weight: 600;
}

.about-sidebar ul {
    list-style: none;
}

.about-sidebar li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.about-sidebar li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2b6cb0;
}

.services-header {
    padding: 80px 60px;
    background: #2d3748;
    color: #ffffff;
    text-align: center;
}

.services-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.services-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    padding: 80px 60px;
    background: #ffffff;
}

.service-full {
    display: flex;
    margin-bottom: 60px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    min-height: 400px;
}

.service-image-full {
    flex: 1;
    overflow: hidden;
}

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

.service-info-full {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    background: #f7fafc;
}

.service-info-full h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.service-info-full p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.contact-layout {
    display: flex;
    min-height: 70vh;
}

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

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 800;
}

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #cbd5e0;
    font-weight: 600;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    overflow: hidden;
}

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

.thanks-container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    background: #f7fafc;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a202c;
    font-weight: 800;
}

.thanks-container p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 600px;
}

.thanks-container .service-selected {
    font-size: 18px;
    color: #2b6cb0;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a202c;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d3748;
    font-weight: 600;
}

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

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

.legal-page li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .service-item,
    .testimonials-split,
    .contact-layout,
    .about-content,
    .service-full {
        flex-direction: column;
    }

    .values-grid,
    .footer-columns {
        flex-direction: column;
    }

    .nav-split {
        padding: 20px 30px;
    }

    .hero-content,
    .intro-text,
    .service-details,
    .testimonial-content,
    .contact-info {
        padding: 50px 30px;
    }

    .hero-content h1,
    .about-hero h1,
    .thanks-container h1 {
        font-size: 36px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}