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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-light: #f1f1f1;
    --text-dark: #2a2a2a;
    --bg-light: #ffffff;
    --bg-section: #f8f9fa;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.ad-disclosure {
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.header-left .logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.header-right a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: var(--highlight-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-section);
}

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: var(--text-dark);
    max-width: 520px;
}

.hero-image {
    flex: 1;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--highlight-color);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #d63851;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-secondary:hover {
    background-color: #0a2647;
    transform: translateY(-2px);
}

.intro-section {
    display: flex;
    padding: 80px 60px;
}

.intro-left {
    flex: 1;
    padding-right: 50px;
    background-color: var(--bg-section);
}

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

.intro-right {
    flex: 1;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-right h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.intro-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-preview {
    padding: 80px 60px;
    background-color: var(--bg-section);
}

.services-preview h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: var(--bg-light);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 280px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--border-color);
}

.service-card h3 {
    font-size: 21px;
    margin: 20px 25px 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    margin: 0 25px 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--highlight-color);
    margin: 20px 25px 25px;
}

.values-split {
    display: flex;
    padding: 80px 60px;
}

.values-content {
    flex: 1;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.values-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    font-size: 16px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
    font-size: 18px;
}

.values-image {
    flex: 1;
    background-color: var(--bg-section);
}

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

.form-section {
    padding: 80px 60px;
    background-color: var(--bg-section);
}

.form-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

.form-section > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
    color: var(--text-dark);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 6px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--highlight-color);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #d63851;
    transform: translateY(-2px);
}

.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 60px 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    opacity: 0.9;
}

.footer-col a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

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

.cookie-banner p {
    flex: 1;
    margin-right: 30px;
    font-size: 14px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-accept {
    background-color: var(--highlight-color);
    color: var(--text-light);
}

.btn-accept:hover {
    background-color: #d63851;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

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

.page-hero {
    background-color: var(--bg-section);
    padding: 100px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.page-hero p {
    font-size: 19px;
    color: var(--text-dark);
}

.about-split {
    display: flex;
    padding: 80px 60px;
}

.about-image {
    flex: 1;
    background-color: var(--bg-section);
}

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

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

.about-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.values-section {
    padding: 80px 60px;
    background-color: var(--bg-section);
}

.values-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 6px;
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.team-split {
    display: flex;
    padding: 80px 60px;
}

.team-content {
    flex: 1;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.team-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.team-image {
    flex: 1;
    background-color: var(--bg-section);
}

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

.equipment-section {
    padding: 80px 60px;
    background-color: var(--bg-section);
}

.equipment-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

.equipment-split {
    display: flex;
    gap: 50px;
}

.equipment-text {
    flex: 1;
}

.equipment-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.equipment-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.cta-section {
    padding: 80px 60px;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.cta-section p {
    font-size: 17px;
    margin-bottom: 35px;
    color: var(--text-dark);
}

.services-detailed {
    padding: 60px 60px;
}

.service-detail-split {
    display: flex;
    margin-bottom: 80px;
    gap: 50px;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    font-size: 15px;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
    font-size: 20px;
}

.service-price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--highlight-color);
    margin-top: 20px;
}

.service-detail-image {
    flex: 1;
    background-color: var(--bg-section);
    border-radius: 6px;
    overflow: hidden;
}

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

.disclaimer-section {
    padding: 60px 60px;
    background-color: var(--bg-section);
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
    opacity: 0.8;
}

.contact-split {
    display: flex;
    padding: 80px 60px;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.contact-map {
    flex: 1;
    background-color: var(--bg-section);
    border-radius: 6px;
    overflow: hidden;
}

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

.directions-section {
    padding: 80px 60px;
    background-color: var(--bg-section);
}

.directions-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

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

.directions-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-section {
    display: flex;
    padding: 80px 60px;
    gap: 50px;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-confirmation {
    font-weight: 600;
    color: var(--highlight-color);
}

.thanks-actions {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--highlight-color);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #d63851;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    border: 2px solid var(--accent-color);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.thanks-image {
    flex: 1;
    background-color: var(--bg-section);
    border-radius: 6px;
    overflow: hidden;
}

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-page a {
    color: var(--highlight-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

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

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    text-align: left;
}

.cookie-table th {
    background-color: var(--bg-section);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    font-size: 15px;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        padding: 20px 30px;
    }

    .header-right {
        margin-top: 20px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-split,
    .intro-section,
    .values-split,
    .about-split,
    .team-split,
    .equipment-split,
    .service-detail-split,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-right,
    .values-content,
    .about-content,
    .team-content,
    .service-detail-content {
        padding: 40px 30px;
    }

    .intro-left,
    .values-image,
    .about-image,
    .team-image,
    .equipment-image,
    .service-detail-image,
    .contact-map,
    .thanks-image {
        min-height: 300px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-banner {
        flex-direction: column;
        padding: 20px 30px;
    }

    .cookie-banner p {
        margin-right: 0;
        margin-bottom: 20px;
    }

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

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

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

    .value-item {
        flex: 1 1 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }
}