* {
    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: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

.nav-links a:hover {
    color: #e74c3c;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-left p {
    font-size: 18px;
    color: #5d6d7e;
    margin-bottom: 32px;
    max-width: 540px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.intro-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.intro-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 17px;
    color: #5d6d7e;
    margin-bottom: 20px;
}

.services-preview {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.services-preview h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    max-width: 420px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 24px 12px 24px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    color: #7f8c8d;
    margin: 0 24px 16px 24px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin: 0 24px 16px 24px;
}

.service-card .select-service {
    margin: 0 24px 24px 24px;
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card .select-service:hover {
    background-color: #2980b9;
}

.process-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.process-content h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.process-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.process-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    min-width: 60px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step p {
    font-size: 16px;
    color: #7f8c8d;
}

.process-image {
    flex: 1;
    background-color: #f1f3f5;
}

.process-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.form-section {
    background-color: #2c3e50;
    padding: 80px 40px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

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

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

.form-group input[readonly] {
    background-color: #ecf0f1;
    color: #2c3e50;
    font-weight: 600;
}

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

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

.trust-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.trust-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.trust-text p {
    font-size: 17px;
    color: #5d6d7e;
    margin-bottom: 20px;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #7f8c8d;
}

.disclaimer-section {
    background-color: #ecf0f1;
    padding: 40px;
}

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

.disclaimer-content p {
    font-size: 14px;
    color: #5d6d7e;
    line-height: 1.8;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 30px 40px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #e74c3c;
}

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    color: #5d6d7e;
    margin-bottom: 16px;
}

.thanks-container .selected-service {
    font-size: 20px;
    font-weight: 600;
    color: #e74c3c;
    margin: 30px 0;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.thanks-container .btn-home:hover {
    background-color: #2980b9;
}

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 40px 60px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #bdc3c7;
}

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

.page-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.page-content p {
    font-size: 16px;
    color: #5d6d7e;
    margin-bottom: 16px;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    margin-left: 30px;
}

.page-content ul li,
.page-content ol li {
    font-size: 16px;
    color: #5d6d7e;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-split {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    color: #5d6d7e;
}

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

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-detail {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.service-detail h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-detail .service-price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 16px;
}

.service-detail p {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .hero-split,
    .intro-split,
    .process-split,
    .trust-content,
    .contact-split {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .hero-left {
        padding: 40px 30px;
    }

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

    .services-preview h2,
    .process-content h2 {
        font-size: 32px;
    }

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