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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 40px;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #5a5a5a;
}

.ad-disclosure {
    font-size: 12px;
    color: #888;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8f7f5;
}

.hero-text {
    max-width: 540px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 32px;
}

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

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

.hero-cta {
    display: flex;
    gap: 16px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1a1a1a;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border: 2px solid #2c2c2c;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.btn-text {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    transition: opacity 0.3s;
}

.btn-text:hover {
    opacity: 0.7;
}

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

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

.split-image-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.split-content-right h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

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

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

.split-content-left h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

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

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

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

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

.section-header-center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header-center p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.6;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 16px;
}

.form-section-split {
    display: flex;
    background-color: #f8f7f5;
    min-height: 600px;
}

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

.form-split-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-split-left p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
}

.form-split-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #f0f0f0;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #5a5a5a;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    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;
    gap: 32px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

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

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

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

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

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

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

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

.contact-info-left h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
}

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

.contact-detail h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-detail p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

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

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

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

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

.about-text-left h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

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

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

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

.services-detail-section {
    padding: 100px 0;
}

.service-detail-item {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.service-detail-content .service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 24px 0;
}

.service-detail-image {
    flex: 1;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.legal-page-container {
    padding: 80px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
}

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

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

@media (max-width: 968px) {
    .hero-split,
    .split-section,
    .split-section-reverse,
    .form-section-split,
    .contact-page-split,
    .about-intro-split {
        flex-direction: column;
    }

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

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

    .service-card {
        flex: 1 1 100%;
    }

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

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

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

    .nav {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
