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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #357abd;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    border-bottom: 1px solid #e0e0e0;
    background-color: #ffffff;
}

.header-left .logo {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

.ad-disclosure {
    font-size: 11px;
    color: #666666;
    padding: 5px 12px;
    border: 1px solid #d0d0d0;
    background-color: #f8f8f8;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4a90e2;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f9f9f9;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-right {
    background-color: #e8e8e8;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #4a90e2;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.split-section {
    display: flex;
    min-height: 500px;
}

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

.split-image-left,
.split-image-right {
    flex: 1;
    background-color: #e8e8e8;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.split-content-right h2,
.split-content-left h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-content-right p,
.split-content-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.link-inline {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #1a1a1a;
}

.feature-list {
    list-style: none;
    margin-top: 25px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
}

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

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

.section-header-center h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 18px;
    color: #666666;
}

.services-grid-split {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: #f9f9f9;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 15px;
    color: #666666;
    margin-bottom: 15px;
}

.price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #4a90e2;
    margin-top: 15px;
}

.form-section {
    padding: 100px 50px;
    background-color: #f9f9f9;
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 45px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #4a90e2;
}

.footer-split {
    display: flex;
    padding: 60px 50px;
    background-color: #1a1a1a;
    color: #ffffff;
    gap: 60px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-column a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.disclaimer {
    font-size: 12px;
    line-height: 1.5;
    color: #888888;
}

.page-hero {
    padding: 100px 50px 60px;
    text-align: center;
    background-color: #f9f9f9;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 18px;
    color: #666666;
}

.values-section {
    padding: 80px 50px;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: #f9f9f9;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
}

.cta-section {
    padding: 100px 50px;
    text-align: center;
    background-color: #f9f9f9;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 35px;
}

.services-detail {
    padding: 50px 50px 80px;
    background-color: #ffffff;
}

.service-block {
    display: flex;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto 80px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.service-info {
    flex: 1;
    padding: 20px;
}

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

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

.service-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-info ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    color: #4a4a4a;
}

.service-info ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
    font-size: 20px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 25px;
    display: block;
}

.contact-split {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 50px 80px;
    gap: 60px;
}

.contact-info {
    flex: 1;
    padding: 20px;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.thanks-section {
    padding: 120px 50px;
    background-color: #f9f9f9;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

#serviceConfirmation {
    font-weight: 600;
    color: #4a90e2;
    margin-top: 30px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.cookie-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.cookie-table thead {
    background-color: #f9f9f9;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    font-weight: 700;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4a4a4a;
}

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

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

    .hero-left,
    .hero-right,
    .split-image-left,
    .split-image-right,
    .split-content-left,
    .split-content-right {
        min-height: 400px;
    }

    .header-split {
        flex-direction: column;
        gap: 20px;
    }

    .form-container-split,
    .service-block,
    .contact-split {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .section-header-center h2,
    .cta-section h2,
    .page-hero h1 {
        font-size: 32px;
    }

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

    .header-split {
        padding: 20px 25px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}