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

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

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

.main-header {
    background-color: #2c3e50;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.ad-disclosure {
    background-color: #e74c3c;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

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

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

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

.hero-section {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #2c3e50;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44,62,80,0.8) 0%, rgba(52,152,219,0.6) 100%);
    display: flex;
    align-items: center;
}

.hero-text {
    color: #fff;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.5;
}

.intro-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.intro-card-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

.intro-card p {
    margin-bottom: 15px;
    font-size: 16px;
}

.intro-card.highlight {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
}

.intro-card.highlight h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.intro-card.highlight ul {
    list-style: none;
}

.intro-card.highlight ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.intro-card.highlight ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 18px;
}

.services-preview {
    padding: 80px 0;
    background-color: #fff;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service-image {
    height: 250px;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.service-content p {
    margin-bottom: 20px;
    flex-grow: 1;
    color: #555;
}

.service-price {
    font-size: 22px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 15px;
}

.btn-service {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 60px 0;
    background-color: #34495e;
    color: #fff;
}

.trust-content h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.trust-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.trust-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

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

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ecf0f1;
    padding: 40px;
    border-radius: 12px;
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-wrapper > p {
    margin-bottom: 30px;
    color: #555;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #27ae60;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #856404;
}

.disclaimer-content p {
    color: #856404;
    line-height: 1.7;
}

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

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

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

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

.footer-col p {
    margin-bottom: 10px;
    color: #bdc3c7;
}

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

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

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

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: #95a5a6;
    color: #fff;
}

.btn-reject:hover {
    opacity: 0.9;
}

.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 0 60px;
    color: #fff;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    color: #ecf0f1;
}

.page-content {
    padding: 60px 0;
    background-color: #fff;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

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

.content-wrapper h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.content-wrapper p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

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

.content-wrapper li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

.about-text {
    flex: 1;
    min-width: 300px;
}

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

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.values-section {
    background-color: #ecf0f1;
    padding: 60px 0;
}

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

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

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

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

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-block p {
    line-height: 1.8;
    color: #555;
}

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

.services-list-section {
    padding: 80px 0;
    background-color: #fff;
}

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: #ecf0f1;
    padding: 30px;
    border-radius: 12px;
}

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

.service-detail-image {
    flex: 0 0 300px;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

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

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

.service-detail-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.service-detail-price {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 15px;
}

.thanks-section {
    padding: 100px 0;
    background-color: #ecf0f1;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.thanks-content .btn-home {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 15px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: background-color 0.3s;
}

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .service-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .about-grid,
    .contact-grid {
        flex-direction: column;
    }

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

    .service-detail-image {
        flex: 0 0 auto;
        width: 100%;
    }
}