* {
    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: #ffffff;
}

.navbar {
    background: #1a1a1a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

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

.ad-disclosure {
    font-size: 0.8rem;
    color: #95a5a6;
    font-style: italic;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid #34495e;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background: #f8f9fa;
}

.hero-left {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #ecf0f1;
    max-width: 540px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #34495e;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #3498db;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

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

.intro-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-grid {
    display: flex;
    gap: 3rem;
}

.intro-card {
    flex: 1;
    padding: 2.5rem;
    background: #ffffff;
    border-left: 4px solid #3498db;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.intro-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.intro-card p {
    color: #555;
    font-size: 1.05rem;
}

.services-split {
    padding: 6rem 2rem;
    background: #ffffff;
}

.services-content {
    max-width: 1000px;
    margin: 0 auto;
}

.services-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 700px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-info {
    flex: 1;
    padding-right: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.service-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-meta {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.service-duration {
    font-style: italic;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    min-width: 180px;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.btn-select {
    padding: 0.8rem 1.8rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-size: 0.95rem;
}

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

.form-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.form-visual {
    flex: 1;
    background: #34495e;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-wrapper {
    flex: 1;
    padding: 3rem;
}

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-lead {
    color: #555;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.form-selected {
    background: #e8f5e9;
    padding: 1.2rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #27ae60;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.trust-section {
    padding: 6rem 2rem;
    background: #34495e;
    color: #ffffff;
}

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

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 3rem;
}

.trust-block {
    flex: 1;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.trust-block h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.trust-block p {
    color: #ecf0f1;
    line-height: 1.7;
}

.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #ecf0f1;
}

.about-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-image {
    flex: 1;
    background: #ecf0f1;
}

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

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-content p {
    margin-bottom: 1.3rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.values-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
}

.value-card {
    flex: 1;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

.team-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.team-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.team-text p {
    margin-bottom: 1.3rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.team-image {
    flex: 1;
    background: #ecf0f1;
}

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

.equipment-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.equipment-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.equipment-list {
    max-width: 1000px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.equipment-item {
    padding: 1.8rem;
    background: #ffffff;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.equipment-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.equipment-item p {
    color: #555;
    line-height: 1.6;
}

.services-detailed {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-card {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.service-detail-time {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.service-detail-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
}

.service-detail-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.service-detail-text {
    flex: 1.5;
}

.service-detail-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-text ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.service-detail-text li {
    margin-bottom: 0.6rem;
    color: #555;
    line-height: 1.6;
}

.service-note {
    background: #fff3cd;
    padding: 1rem;
    border-left: 4px solid #ffc107;
    font-size: 0.95rem;
    color: #856404;
}

.service-detail-image {
    flex: 1;
    background: #ecf0f1;
}

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

.cta-services {
    padding: 4rem 2rem;
    background: #34495e;
    text-align: center;
    color: #ffffff;
}

.cta-services h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.contact-main {
    padding: 4rem 2rem;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-block p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.email-display {
    color: #2c3e50;
    font-weight: 600;
}

.contact-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.contact-map {
    flex: 1;
    background: #ecf0f1;
}

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

.map-caption {
    padding: 1rem;
    background: #34495e;
    color: #ffffff;
    font-size: 0.9rem;
    text-align: center;
}

.contact-faq {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.contact-faq h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #2c3e50;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-lead {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-service-box {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    text-align: left;
    border-left: 4px solid #27ae60;
}

.thanks-service-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.thanks-next {
    margin: 2.5rem 0;
    text-align: left;
}

.thanks-next h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-next ol {
    list-style-position: inside;
    color: #555;
    line-height: 1.8;
}

.thanks-next li {
    margin-bottom: 0.8rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-updated {
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    color: #34495e;
}

.legal-page p {
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.7;
}

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

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

.footer {
    background: #1a1a1a;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #34495e;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    color: #95a5a6;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.footer-col li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.footer-bottom p {
    color: #7f8c8d;
    font-size: 0.9rem;
    text-align: center;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.btn-cookie {
    padding: 0.7rem 1.8rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: #229954;
}

.btn-cookie-alt {
    padding: 0.7rem 1.8rem;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-alt:hover {
    background: #ffffff;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .hero-right {
        min-height: 400px;
    }

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

    .service-item {
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-price {
        align-items: flex-start;
    }

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

    .form-visual {
        min-height: 300px;
    }

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

    .about-split {
        flex-direction: column;
    }

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

    .team-content {
        flex-direction: column;
    }

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

    .contact-split {
        flex-direction: column;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

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