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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

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

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

.btn-accept {
    background: #2ecc71;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #f8f9fa;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

.hero-section {
    position: relative;
    height: 600px;
    background: #34495e;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    max-width: 800px;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.95;
}

.intro-block {
    background: #f8f9fa;
    padding: 80px 40px;
}

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

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

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

.intro-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.services-preview {
    background: #ffffff;
    padding: 100px 40px;
}

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

.section-header h2 {
    font-size: 42px;
    color: #2c3e50;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: #ecf0f1;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 18px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #2ecc71;
    margin-top: 16px;
}

.full-width-image {
    background: #34495e;
    padding: 0;
    margin: 0;
}

.full-width-image img {
    width: 100%;
    display: block;
    background-color: #95a5a6;
}

.why-choose {
    background: #2c3e50;
    color: #ffffff;
    padding: 90px 40px;
}

.why-choose h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.reason-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.reason {
    flex: 1 1 300px;
}

.reason h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3498db;
}

.reason p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-form-section {
    background: #ecf0f1;
    padding: 80px 40px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.form-container p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    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: #3498db;
}

.btn-submit {
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.guarantee-section {
    background: #ffffff;
    padding: 70px 40px;
}

.guarantee-section h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.guarantee-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3498db;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.85;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.page-header {
    background: #34495e;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.service-detail-section {
    padding: 60px 40px;
}

.service-detail-section.alt-layout {
    background: #f8f9fa;
}

.service-detail-block {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

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

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

.service-detail-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding-left: 28px;
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
    color: #444;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

.price-box {
    margin-top: 28px;
    padding: 20px;
    background: #ecf0f1;
    border-radius: 6px;
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2ecc71;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #bdc3c7;
}

.additional-services {
    background: #ffffff;
    padding: 80px 40px;
}

.additional-services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.additional-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.additional-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 6px;
}

.additional-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.additional-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 16px;
}

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

.cta-simple {
    background: #3498db;
    color: #ffffff;
    padding: 70px 40px;
    text-align: center;
}

.cta-simple h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-simple p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.about-intro {
    background: #ffffff;
    padding: 80px 40px;
}

.about-text-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.team-image-section {
    padding: 0;
    margin: 0;
}

.team-image-section img {
    width: 100%;
    display: block;
    background-color: #95a5a6;
}

.values-section {
    background: #f8f9fa;
    padding: 90px 40px;
}

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

.values-blocks {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 300px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #3498db;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.certifications-section {
    background: #ffffff;
    padding: 70px 40px;
}

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

.certifications-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.process-section {
    background: #2c3e50;
    color: #ffffff;
    padding: 90px 40px;
}

.process-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.process-steps {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step {
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 12px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

.philosophy-section {
    background: #f8f9fa;
    padding: 70px 40px;
}

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

.philosophy-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.cta-about {
    background: #ffffff;
    padding: 70px 40px;
    text-align: center;
}

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

.cta-about p {
    font-size: 17px;
    color: #666;
    margin-bottom: 28px;
}

.contact-info-section {
    background: #ffffff;
    padding: 80px 40px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

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

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

.info-block h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #3498db;
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 8px;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    background-color: #bdc3c7;
}

.reach-section {
    background: #f8f9fa;
    padding: 70px 40px;
}

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

.reach-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.service-area-section {
    background: #ffffff;
    padding: 70px 40px;
}

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

.service-area-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.area-list {
    display: flex;
    gap: 60px;
    margin: 30px 0;
}

.area-list ul {
    flex: 1;
    list-style: none;
}

.area-list ul li {
    padding-left: 24px;
    margin-bottom: 8px;
    position: relative;
    font-size: 16px;
    color: #444;
}

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

.area-note {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

.directions-section {
    background: #f8f9fa;
    padding: 70px 40px;
}

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

.directions-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.directions-info {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.direction-method {
    flex: 1 1 300px;
}

.direction-method h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #3498db;
}

.direction-method p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    background: #f8f9fa;
    padding: 100px 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #2ecc71;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-confirmation {
    padding: 16px;
    background: #ecf0f1;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #2c3e50;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    padding-left: 28px;
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
    color: #555;
}

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

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.legal-page {
    background: #ffffff;
    padding: 60px 40px;
    min-height: 60vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-container ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

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

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

@media (max-width: 768px) {
    .nav-container {
        padding: 18px 20px;
    }

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

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

    .hero-text p {
        font-size: 18px;
    }

    .services-grid {
        gap: 20px;
    }

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

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

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

    .area-list {
        flex-direction: column;
        gap: 20px;
    }

    .thanks-container {
        padding: 40px 30px;
    }

    .form-container {
        padding: 30px 20px;
    }
}
