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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.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;
    margin: 0;
}

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

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

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

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

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

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

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

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

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

.site-logo {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.nav-link:hover,
.nav-link.active {
    color: #3498db;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    display: block;
}

.hero-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text-wrapper {
    flex: 1;
}

.hero-title {
    font-size: 52px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 36px;
}

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

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.hero-visual {
    flex: 1;
    background-color: #dfe6e9;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.value-cards-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-title {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-description {
    font-size: 18px;
    color: #7f8c8d;
}

.cards-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.value-card {
    flex: 1 1 calc(50% - 14px);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-icon {
    color: #3498db;
    margin-bottom: 20px;
}

.card-title {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.card-text {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

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

.services-header {
    max-width: 1400px;
    margin: 0 auto 50px;
    text-align: center;
}

.services-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border: 2px solid #3498db;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #3498db;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

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

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

.service-content {
    padding: 30px;
}

.service-name {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-description {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.process-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.process-text {
    flex: 1.2;
}

.process-steps {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    min-width: 60px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-text {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.process-visual {
    flex: 1;
    background-color: #dfe6e9;
    border-radius: 12px;
    overflow: hidden;
}

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

.request-form-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-title {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-description {
    font-size: 18px;
    color: #ecf0f1;
}

.contact-form {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.form-textarea {
    resize: vertical;
}

.form-actions {
    margin-top: 32px;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

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

.footer-heading {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    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;
    color: #95a5a6;
}

.content-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.page-title {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 600;
}

.content-section p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-section ul,
.content-section ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.content-section li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 8px;
}

.about-intro {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

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

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

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.contact-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    color: #ffffff;
}

.thanks-box h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-box p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 30px;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.thanks-info p {
    margin-bottom: 0;
    font-size: 16px;
}

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

    .nav-list {
        gap: 20px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 42px;
    }

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

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

    .contact-form {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

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

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

    .cards-grid {
        gap: 20px;
    }

    .services-cards {
        gap: 24px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}