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

.ad-disclosure {
    background-color: #f7fafc;
    color: #718096;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #e2e8f0;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
}

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

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

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

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #f7fafc;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a202c;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 38px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2d3748;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #1a202c;
    transform: translateY(-2px);
}

.split-section {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
}

.split-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 26px;
    color: #1a202c;
}

.split-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
    max-width: 520px;
}

.split-image {
    flex: 1;
    background-color: #cbd5e0;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.text-link {
    display: inline-block;
    color: #2d3748;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    margin-top: 20px;
    transition: color 0.3s;
}

.text-link:hover {
    color: #1a202c;
}

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

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 44px;
    margin-bottom: 18px;
    color: #1a202c;
}

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

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    background-color: #f7fafc;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

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

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a202c;
}

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

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

.select-service {
    padding: 14px 28px;
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #1a202c;
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 60px;
    background-color: #f7fafc;
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a202c;
}

.form-intro p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

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

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-button {
    padding: 16px 36px;
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-button:hover {
    background-color: #1a202c;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 50px 60px;
    background-color: #edf2f7;
}

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

.disclaimer-text {
    font-size: 14px;
    color: #718096;
    line-height: 1.7;
    text-align: center;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 60px;
}

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

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

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

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

.footer-column ul li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 24px 60px;
    box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #63b3ed;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cookie-btn.accept {
    background-color: #48bb78;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #38a169;
    transform: translateY(-1px);
}

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

.cookie-btn.reject:hover {
    background-color: #2d3748;
    transform: translateY(-1px);
}

.service-card.selected {
    border: 3px solid #2d3748;
}

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

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

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

.thanks-container .back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #2d3748;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-container .back-link:hover {
    background-color: #1a202c;
}

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

.page-header h1 {
    font-size: 48px;
    margin-bottom: 18px;
    color: #1a202c;
}

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

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

.page-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #1a202c;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 14px;
    color: #2d3748;
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 18px;
}

.page-content ul {
    margin-bottom: 24px;
    padding-left: 30px;
}

.page-content ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

.contact-info-section {
    padding: 100px 60px;
}

.contact-info-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a202c;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2d3748;
    font-weight: 700;
}

.contact-item p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background-color: #e2e8f0;
    min-height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.about-hero {
    padding: 100px 60px;
    background-color: #f7fafc;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 52px;
    margin-bottom: 28px;
    color: #1a202c;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.8;
}

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

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

.about-split-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a202c;
}

.about-split-content p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 18px;
}

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

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

.services-list-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.services-list-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-list-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a202c;
}

.services-list-header p {
    font-size: 19px;
    color: #718096;
    line-height: 1.7;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #cbd5e0;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 18px;
    color: #1a202c;
}

.service-detail-content p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin-top: 24px;
}

@media (max-width: 968px) {
    .hero-split,
    .split-section,
    .form-container-split,
    .contact-info-container,
    .about-split,
    .service-card,
    .service-detail-card {
        flex-direction: column;
    }

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

    .service-card:nth-child(even),
    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .navigation {
        padding: 20px 30px;
    }

    .hero-content,
    .split-content,
    .services-preview,
    .form-section,
    .page-content {
        padding: 60px 30px;
    }

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

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