* {
    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;
}

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

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

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

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

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

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

.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-main {
    padding: 20px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand h1 {
    font-size: 28px;
    color: #2c3e50;
    font-weight: 600;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 8px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

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

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

.hero-content-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.2;
}

.hero-content-left p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.hero-image-right {
    flex: 1;
    background-color: #dfe6e9;
    position: relative;
    overflow: hidden;
}

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

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

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

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-section h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.services-split-layout {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.service-row {
    display: flex;
    margin-bottom: 60px;
    gap: 40px;
    align-items: center;
}

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

.service-image-left,
.service-image-right {
    flex: 1;
    background-color: #dfe6e9;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

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

.service-content-right,
.service-content-left {
    flex: 1;
    padding: 20px;
}

.service-content-right h4,
.service-content-left h4 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content-right p,
.service-content-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin: 20px 0;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #34495e;
}

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-section h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-section > .container-narrow > p {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.footer-main {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

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

.footer-column h4 {
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column p {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

.footer-column ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.page-hero {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 10px;
}

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

.about-split-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-row {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

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

.about-text-left,
.about-text-right {
    flex: 1;
    padding: 20px;
}

.about-text-left h3,
.about-text-right h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-text-left p,
.about-text-right p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.about-image-left,
.about-image-right {
    flex: 1;
    background-color: #dfe6e9;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

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

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.services-detailed {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-row {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 1;
    background-color: #dfe6e9;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

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

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

.service-detail-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin: 20px 0;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-detail-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-detail-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
}

.contact-split-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

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

.contact-info-left h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.contact-detail h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-image-right {
    flex: 1;
    background-color: #dfe6e9;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

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

.map-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.map-section h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.map-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    padding: 120px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.thanks-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.service-confirmation {
    margin: 30px 0;
    padding: 20px;
    background-color: #d4edda;
    border-radius: 4px;
}

.service-confirmation p {
    font-size: 16px;
    color: #155724;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-page h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

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

.legal-page ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: #555;
}

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

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

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

    .hero-content-left {
        padding: 40px 20px;
    }

    .hero-content-left h2 {
        font-size: 32px;
    }

    .service-row,
    .service-row.reverse,
    .about-row,
    .about-row.reverse,
    .service-detail-row,
    .service-detail-row.reverse,
    .contact-row {
        flex-direction: column;
    }

    .nav-main {
        gap: 15px;
    }

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

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

    .contact-form {
        padding: 25px;
    }
}
