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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    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-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;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #2980b9;
}

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

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

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

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

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

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

.main-nav a:hover {
    color: #3498db;
}

.ad-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background-color: #ecf0f1;
    border-radius: 3px;
}

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

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

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

.hero-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

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

.intro-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.intro-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.8;
}

.intro-image {
    flex: 1;
    background-color: #ecf0f1;
}

.intro-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

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

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

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

.section-header-center p {
    font-size: 1.1rem;
    color: #34495e;
}

.service-row {
    display: flex;
    margin-bottom: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

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

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

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

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

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

.service-info p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.service-info .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 0.875rem 1.75rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.form-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.form-container-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-intro p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.8;
}

.form-wrapper {
    flex: 1;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.trust-section {
    padding: 5rem 5%;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.trust-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding: 4rem 5%;
    background-color: #34495e;
    color: #ecf0f1;
}

.footer-col {
    flex: 1;
}

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

.footer-col p,
.footer-col ul {
    font-size: 0.95rem;
    line-height: 1.8;
}

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

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

.footer-col a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.disclaimer-footer {
    font-size: 0.85rem;
    color: #95a5a6;
    font-style: italic;
}

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

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #f8f9fa;
    padding: 4rem 3rem;
    border-radius: 8px;
}

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

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.8;
}

.thanks-content .selected-service {
    font-weight: 600;
    color: #3498db;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.legal-page h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.legal-page p,
.legal-page ul {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-page ul {
    margin-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.contact-page {
    padding: 4rem 5%;
}

.contact-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.contact-info p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-hero {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

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

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-hero p {
    font-size: 1.25rem;
    color: #34495e;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-section {
    padding: 5rem 5%;
}

.about-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
    align-items: center;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-page-header {
    padding: 4rem 5%;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.services-page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

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

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

    .hero-split,
    .service-row,
    .service-row.reverse,
    .form-container-split,
    .intro-container,
    .about-split,
    .about-split.reverse,
    .contact-split {
        flex-direction: column;
    }

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

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

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