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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    background-color: #3182ce;
    color: #ffffff;
    transition: background-color 0.3s;
}

.btn-cookie:hover {
    background-color: #2c5aa0;
}

.btn-cookie.btn-secondary {
    background-color: #4a5568;
}

.btn-cookie.btn-secondary:hover {
    background-color: #2d3748;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 5%;
    right: 5%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    z-index: 1000;
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    text-decoration: none;
}

.ad-label {
    font-size: 0.85rem;
    color: #718096;
    padding: 0.25rem 0.75rem;
    background-color: #edf2f7;
    border-radius: 4px;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-right a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #2d3748;
}

.hero-offset {
    margin-top: 120px;
    padding: 4rem 5%;
    display: flex;
    align-items: center;
    gap: 3rem;
    min-height: 600px;
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.hero-text-block p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.hero-image-block {
    flex: 1;
    position: relative;
    transform: translateX(30px) translateY(-20px);
}

.hero-image-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    object-fit: cover;
    background-color: #e2e8f0;
}

.intro-asymmetric {
    padding: 5rem 5%;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    background-color: #f7fafc;
}

.intro-content-left {
    flex: 1.2;
    padding-top: 2rem;
}

.intro-content-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.intro-content-left p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
}

.intro-image-right {
    flex: 1;
    transform: translateY(40px);
}

.intro-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #e2e8f0;
}

.services-featured {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.services-featured h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a202c;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-large {
    flex: 1 1 calc(50% - 2rem);
}

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

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

.service-large img {
    height: 350px;
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #2d3748;
}

.service-content p {
    color: #4a5568;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-top: 0.5rem;
}

.btn-select-service {
    padding: 0.75rem 1.5rem;
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select-service:hover {
    background-color: #2c5aa0;
    transform: translateY(-2px);
}

.cta-inline-section {
    padding: 4rem 5%;
    background-color: #edf2f7;
}

.cta-box-offset {
    max-width: 700px;
    margin-left: 10%;
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    transform: translateX(-20px);
}

.cta-box-offset h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box-offset p {
    font-size: 1.1rem;
}

.why-us-section {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
    text-align: center;
}

.why-blocks {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.why-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #2b6cb0;
}

.why-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.why-item p {
    color: #4a5568;
}

.booking-form-section {
    padding: 6rem 5%;
    background-color: #f7fafc;
}

.form-container-offset {
    max-width: 600px;
    margin-left: auto;
    margin-right: 5%;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-container-offset h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #fff5f5;
    border-top: 2px solid #fc8181;
}

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

.disclaimer-content p {
    color: #742a2a;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-main {
    background-color: #1a202c;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-column p {
    color: #a0aec0;
    margin-bottom: 0.5rem;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5%;
    background-color: #f7fafc;
}

.thanks-box {
    max-width: 600px;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-box h1 {
    font-size: 2.5rem;
    color: #2b6cb0;
    margin-bottom: 1.5rem;
}

.thanks-box p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.thanks-box .btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-box .btn-home:hover {
    background-color: #2c5aa0;
}

.page-header {
    margin-top: 120px;
    padding: 4rem 5%;
    background-color: #edf2f7;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.page-content {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.page-content p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.page-content li {
    margin-bottom: 0.5rem;
}

.contact-info-section {
    padding: 4rem 5%;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.6;
}

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

.services-list-page {
    padding: 4rem 5%;
}

.services-list-page h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.service-detail-card img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e2e8f0;
}

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

.service-detail-content h3 {
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.service-detail-content .price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-top: 1rem;
}

.about-content-layout {
    padding: 4rem 5%;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.about-sidebar img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    object-fit: cover;
    background-color: #e2e8f0;
}

.values-section {
    padding: 4rem 5%;
    background-color: #f7fafc;
}

.values-section h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1a202c;
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.value-item p {
    color: #4a5568;
}

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
        margin-top: 100px;
    }

    .hero-text-block h1 {
        font-size: 2rem;
    }

    .hero-image-block {
        transform: none;
    }

    .intro-asymmetric {
        flex-direction: column;
    }

    .intro-image-right {
        transform: none;
    }

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

    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-info-section {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card img {
        width: 100%;
    }

    .about-content-layout {
        flex-direction: column;
    }
}