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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    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;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

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

.btn-accept {
    background-color: #4a90e2;
    color: #fff;
}

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

.btn-reject {
    background-color: #666;
    color: #fff;
}

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

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0;
}

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

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

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

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

.nav-menu a:hover {
    color: #4a90e2;
}

.ad-notice {
    font-size: 12px;
    color: #999;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.hero-section {
    margin-bottom: 0;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: #fff;
    padding: 40px;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4a90e2;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #3a7bc8;
    transform: translateY(-2px);
}

.intro-section {
    padding: 100px 40px;
    background-color: #f9f9f9;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-content {
    flex: 1;
}

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

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

.intro-image {
    flex: 0 0 450px;
    background-color: #ddd;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.trust-section {
    padding: 100px 0;
    background-color: #2c3e50;
    color: #fff;
}

.full-width-block {
    width: 100%;
}

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

.trust-content-wrapper h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

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

.trust-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #4a90e2;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
}

.services-preview-section {
    padding: 100px 40px;
    background-color: #fff;
}

.section-container-alt {
    max-width: 1300px;
    margin: 0 auto;
}

.section-container-alt h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 300px;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #ddd;
}

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

.service-info {
    padding: 28px;
}

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

.service-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.5;
}

.price-tag {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #4a90e2;
}

.cta-centered {
    text-align: center;
}

.cta-link-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-link-large:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.process-section {
    padding: 100px 40px;
    background-color: #f0f4f8;
}

.process-text {
    flex: 1;
}

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

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

.process-image {
    flex: 0 0 450px;
    background-color: #ddd;
}

.process-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.form-section {
    padding: 100px 40px;
    background-color: #fff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #3a7bc8;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #f5f5f5;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-left: 4px solid #e74c3c;
    border-radius: 4px;
}

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #e74c3c;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

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

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.page-header-section {
    background-color: #2c3e50;
    padding: 80px 40px;
    text-align: center;
    color: #fff;
}

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

.page-header-content p {
    font-size: 20px;
    color: #ccc;
}

.about-intro-section {
    padding: 100px 40px;
    background-color: #fff;
}

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 0 0 450px;
    background-color: #ddd;
}

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

.values-section {
    padding: 100px 0;
    background-color: #f0f4f8;
}

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

.values-content-wrapper h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #4a90e2;
}

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

.history-section {
    padding: 100px 40px;
    background-color: #fff;
}

.history-image {
    flex: 0 0 450px;
    background-color: #ddd;
}

.history-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.history-text {
    flex: 1;
}

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

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

.team-approach-section {
    padding: 100px 40px;
    background-color: #f9f9f9;
}

.approach-container {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.approach-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    padding: 30px;
    background-color: #fff;
    border-left: 4px solid #4a90e2;
    border-radius: 4px;
}

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

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

.certifications-section {
    padding: 80px 40px;
    background-color: #2c3e50;
    color: #fff;
}

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

.cert-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.cert-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.services-page-section {
    padding: 100px 40px;
    background-color: #fff;
}

.services-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-page-intro {
    text-align: center;
    margin-bottom: 80px;
}

.services-page-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-page-intro p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.service-detail-image {
    flex: 0 0 350px;
    background-color: #ddd;
}

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

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

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

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

.service-price-box {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4a90e2;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    border-radius: 6px;
}

.contact-page-section {
    padding: 100px 40px;
    background-color: #f9f9f9;
}

.contact-page-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-page-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-page-intro p {
    font-size: 18px;
    color: #666;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
}

.contact-info-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.contact-map-section {
    margin-top: 60px;
    text-align: center;
}

.contact-map-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.thanks-service-info {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.thanks-service-info strong {
    color: #2c3e50;
}

.thanks-actions {
    margin-top: 40px;
}

.thanks-actions a {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-actions a:hover {
    background-color: #3a7bc8;
}

.legal-page-section {
    padding: 80px 40px;
    background-color: #fff;
}

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

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

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

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

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

.legal-container strong {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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

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

    .intro-image,
    .process-image,
    .about-image,
    .history-image {
        flex: 1;
        width: 100%;
    }

    .services-list {
        flex-direction: column;
    }

    .trust-item,
    .value-item {
        flex: 1 1 100%;
    }

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

    .service-detail-image {
        flex: 1;
        width: 100%;
    }

    .contact-info-item {
        flex: 1 1 100%;
    }
}