* {
    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: #2c3e50;
    background-color: #f8f9fa;
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a2e;
}

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

.hero-visual {
    flex: 1;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #1a252f;
}

.content-split {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    margin: 40px 0;
}

.content-split.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
    padding: 60px;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a5a6e;
    line-height: 1.7;
}

.split-visual {
    flex: 1;
    overflow: hidden;
    min-height: 450px;
}

.split-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-grid {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.section-intro p {
    font-size: 18px;
    color: #5a5a6e;
    max-width: 700px;
    margin: 0 auto;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.card-image {
    overflow: hidden;
    height: 240px;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a2e;
}

.card-content p {
    font-size: 15px;
    color: #5a5a6e;
    margin-bottom: 18px;
    line-height: 1.6;
}

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

.btn-select {
    width: 100%;
    padding: 14px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #1a252f;
}

.form-section-split {
    display: flex;
    background-color: #ffffff;
    margin: 40px 0;
}

.form-container {
    flex: 1;
    padding: 60px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.form-intro p {
    font-size: 17px;
    color: #5a5a6e;
    margin-bottom: 36px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 18px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.form-visual {
    flex: 1;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.disclaimer-section {
    padding: 50px 60px;
    background-color: #ecf0f1;
    margin: 40px 0;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

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

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

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

.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;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px 60px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.cookie-content p {
    flex: 1;
    margin-right: 30px;
    font-size: 15px;
}

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

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

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

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

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

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

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

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a2e;
}

.value-item p {
    font-size: 15px;
    color: #5a5a6e;
    line-height: 1.6;
}

.team-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.team-section p {
    font-size: 17px;
    color: #5a5a6e;
    margin-bottom: 32px;
    max-width: 900px;
}

.equipment-list ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 900px;
}

.equipment-list ul li {
    font-size: 16px;
    color: #5a5a6e;
    padding-left: 28px;
    position: relative;
}

.equipment-list ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 24px;
}

.services-detail {
    padding: 60px 60px;
    background-color: #f8f9fa;
}

.service-detail-card {
    background-color: #ffffff;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.detail-split {
    display: flex;
}

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

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

.detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.detail-content p {
    font-size: 16px;
    color: #5a5a6e;
    margin-bottom: 24px;
    line-height: 1.7;
}

.detail-content ul {
    margin-bottom: 24px;
}

.detail-content ul li {
    font-size: 15px;
    color: #5a5a6e;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 24px;
}

.detail-image {
    flex: 1;
    overflow: hidden;
    min-height: 400px;
}

.detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-section {
    padding: 80px 60px;
    background-color: #ecf0f1;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.cta-section p {
    font-size: 17px;
    color: #5a5a6e;
    margin-bottom: 32px;
}

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

.contact-info {
    max-width: 700px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a2e;
}

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

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

.info-block p {
    font-size: 16px;
    color: #5a5a6e;
    line-height: 1.6;
}

.thanks-section {
    padding: 120px 60px;
    background-color: #ffffff;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.thanks-container p {
    font-size: 17px;
    color: #5a5a6e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.selected-service {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a2e;
}

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

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    color: #5a5a6e;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.legal-page ul li {
    font-size: 16px;
    color: #5a5a6e;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .content-split,
    .form-section-split,
    .detail-split {
        flex-direction: column;
    }

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

    .footer-grid {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-col {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .nav-split {
        padding: 16px 30px;
    }

    .nav-right {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content,
    .split-text,
    .form-container,
    .detail-content {
        padding: 40px 30px;
    }

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

    .services-grid,
    .values-section,
    .team-section,
    .services-detail,
    .contact-split {
        padding: 50px 30px;
    }

    .service-card {
        width: 100%;
    }

    .footer {
        padding: 40px 30px 20px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-content p {
        margin-right: 0;
    }
}