* {
    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 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
    position: sticky;
    top: 0;
    z-index: 100;
}

.layout-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background-color: #34495e;
    color: #ecf0f1;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 38px;
    height: calc(100vh - 38px);
    overflow-y: auto;
}

.logo h2 {
    font-size: 22px;
    margin-bottom: 40px;
    color: #f39c12;
    font-weight: 700;
}

.main-nav ul {
    list-style: none;
}

.main-nav li {
    margin-bottom: 12px;
}

.main-nav a {
    color: #ecf0f1;
    text-decoration: none;
    display: block;
    padding: 12px 16px;
    border-radius: 6px;
    transition: background-color 0.3s;
    font-size: 15px;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: #2c3e50;
    color: #f39c12;
}

.sidebar-cta {
    margin-top: 48px;
    padding: 20px;
    background-color: #2c3e50;
    border-radius: 8px;
}

.sidebar-cta h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #f39c12;
}

.sidebar-cta p {
    font-size: 14px;
    margin-bottom: 16px;
    color: #bdc3c7;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 32px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #95a5a6;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f39c12;
}

.main-content {
    flex: 1;
    padding: 48px 64px;
    max-width: 1400px;
}

.hero-section {
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 28px;
    max-width: 680px;
}

.hero-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-color: #dfe6e9;
}

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

.intro-section {
    margin-bottom: 64px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.intro-text {
    flex: 1.3;
}

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

.intro-text p {
    margin-bottom: 18px;
    font-size: 16px;
    color: #555;
}

.intro-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #dfe6e9;
}

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

.services-preview {
    margin-bottom: 64px;
}

.services-preview h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

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

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

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

.service-card h3 {
    font-size: 20px;
    margin: 20px 20px 12px;
    color: #2c3e50;
}

.service-card p {
    margin: 0 20px 12px;
    font-size: 15px;
    color: #666;
    flex: 1;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #f39c12;
    margin: 0 20px 16px;
}

.select-service-btn {
    margin: 0 20px 20px;
    padding: 12px 20px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.process-section {
    margin-bottom: 64px;
}

.process-section h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1 1 calc(25% - 18px);
    min-width: 200px;
    background-color: #ffffff;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #f39c12;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-step p {
    font-size: 15px;
    color: #666;
}

.form-section {
    margin-bottom: 64px;
    padding: 48px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.form-intro {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 32px;
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    border-left: 4px solid #27ae60;
}

.selected-service-display p {
    margin-bottom: 6px;
    font-size: 15px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.disclaimer-section {
    background-color: #fff9e6;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
    margin-bottom: 64px;
}

.disclaimer-section h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #856404;
}

.disclaimer-section p {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #f39c12;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px 32px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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: 24px;
}

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

.cookie-content a {
    color: #f39c12;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #636e72;
}

.page-header {
    margin-bottom: 48px;
}

.page-header h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 18px;
    color: #7f8c8d;
}

.about-content {
    margin-bottom: 64px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.about-text {
    flex: 1.2;
}

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

.about-text p {
    margin-bottom: 18px;
    font-size: 16px;
    color: #555;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #dfe6e9;
}

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

.values-section {
    margin-bottom: 64px;
}

.values-section h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c3e50;
}

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

.value-item {
    flex: 1 1 calc(50% - 14px);
    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: 20px;
    margin-bottom: 12px;
    color: #f39c12;
}

.value-item p {
    font-size: 15px;
    color: #666;
}

.experience-section,
.commitment-section {
    margin-bottom: 64px;
}

.experience-section h2,
.commitment-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.experience-section p,
.commitment-section p {
    margin-bottom: 18px;
    font-size: 16px;
    color: #555;
}

.equipment-section {
    margin-bottom: 64px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.equipment-text {
    flex: 1;
}

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

.equipment-text p {
    margin-bottom: 18px;
    font-size: 16px;
    color: #555;
}

.equipment-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #dfe6e9;
}

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

.services-detailed {
    margin-bottom: 64px;
}

.service-detail {
    margin-bottom: 56px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #dfe6e9;
}

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

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 20px;
}

.service-detail-content p {
    margin-bottom: 16px;
    font-size: 16px;
    color: #555;
}

.service-detail-content h3 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.service-detail-content li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #666;
}

.service-info {
    margin-bottom: 64px;
}

.service-info h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.faq-item {
    margin-bottom: 28px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 15px;
    color: #666;
}

.cta-section {
    text-align: center;
    padding: 48px;
    background-color: #ecf0f1;
    border-radius: 12px;
    margin-bottom: 64px;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-section p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 28px;
}

.contact-info {
    margin-bottom: 64px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.contact-block {
    flex: 1;
}

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #f39c12;
}

.contact-item p {
    font-size: 15px;
    color: #555;
}

.contact-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #dfe6e9;
}

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

.contact-text,
.service-area,
.response-info,
.emergency-contact {
    margin-bottom: 48px;
}

.contact-text h2,
.service-area h2,
.response-info h2,
.emergency-contact h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-text p,
.service-area p,
.response-info p,
.emergency-contact p {
    margin-bottom: 16px;
    font-size: 16px;
    color: #555;
}

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

.contact-text a:hover {
    text-decoration: underline;
}

.thanks-section {
    margin-bottom: 64px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.thanks-content {
    flex: 1.5;
}

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

.thanks-message {
    font-size: 17px;
    color: #555;
    margin-bottom: 32px;
}

.confirmation-box {
    background-color: #e8f5e9;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    border-left: 4px solid #27ae60;
}

.confirmation-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.selected-service {
    font-size: 20px;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 8px;
}

.selected-price {
    font-size: 24px;
    font-weight: 700;
    color: #f39c12;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    width: 44px;
    height: 44px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-text p {
    font-size: 15px;
    color: #666;
}

.thanks-actions {
    display: flex;
    gap: 16px;
}

.thanks-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #dfe6e9;
}

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

.additional-info {
    margin-bottom: 64px;
}

.additional-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.legal-content {
    max-width: 900px;
}

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

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

.legal-content p {
    margin-bottom: 16px;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 24px;
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #666;
}

@media (max-width: 1024px) {
    .layout-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        position: static;
        height: auto;
    }

    .main-content {
        padding: 32px 24px;
    }

    .intro-section,
    .about-content,
    .equipment-section,
    .service-detail,
    .contact-info,
    .thanks-section {
        flex-direction: column;
    }

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

    .service-cards {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .page-header h1 {
        font-size: 32px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

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

    .thanks-actions a {
        text-align: center;
    }
}