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

.main-header {
    background-color: #1a1a1a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #999;
    margin-left: 2rem;
    padding-left: 2rem;
    border-left: 1px solid #444;
}

.hero-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: #0d1b2a;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 900px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-overlay p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.intro-block {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.content-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-narrow p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.services-grid-alt {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card-wide {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-card-wide.reverse {
    flex-direction: row-reverse;
}

.service-image-container {
    flex: 1;
    min-width: 450px;
    height: 400px;
    background-color: #e0e0e0;
}

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

.service-text {
    flex: 1;
    padding: 2.5rem;
}

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

.service-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.price-tag {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

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

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

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

.trust-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.trust-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.trust-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f39c12;
}

.stat-label {
    font-size: 0.9rem;
    color: #bdc3c7;
}

.more-services-block {
    background-color: #ecf0f1;
    padding: 6rem 2rem;
}

.more-services-block h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3.5rem;
    color: #2c3e50;
}

.alt-services-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.compact-service {
    flex: 1;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    padding-bottom: 1.5rem;
}

.compact-service img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #d0d0d0;
}

.compact-service h3 {
    font-size: 1.3rem;
    padding: 1rem 1.5rem 0.5rem;
    color: #2c3e50;
}

.compact-service p {
    font-size: 0.95rem;
    padding: 0 1.5rem;
    color: #666;
    margin-bottom: 1rem;
}

.price-inline {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #27ae60;
    padding: 0.5rem 1.5rem;
}

.compact-service .select-service-btn {
    margin: 0 1.5rem;
}

.contact-form-section {
    background-color: #2c3e50;
    padding: 5rem 2rem;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

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

.form-wrapper > p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #666;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-row label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-row input,
.form-row select {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.disclaimer-section {
    background-color: #fffbf0;
    padding: 3rem 2rem;
    border-top: 3px solid #f39c12;
}

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

.disclaimer-content p {
    font-size: 0.9rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-col p,
.footer-col a {
    font-size: 0.9rem;
    color: #b0b0b0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: #4a90e2;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.85rem;
}

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

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

.cookie-content {
    max-width: 1200px;
    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;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

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

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

.page-hero-small {
    background-color: #34495e;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.about-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.about-text-primary {
    flex: 1;
}

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

.about-text-primary p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

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

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

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

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

.values-blocks {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
}

.value-item {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

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

.value-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

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

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

.timeline-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3498db;
    min-width: 80px;
}

.timeline-item p {
    font-size: 1rem;
    color: #555;
}

.cta-about {
    background-color: #3498db;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

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

.cta-inner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.services-detail-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

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

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

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

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

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.service-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

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

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

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.price-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

.contact-info-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

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

.contact-details {
    flex: 1;
}

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

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #34495e;
}

.contact-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.contact-map-placeholder {
    flex: 1;
}

.map-box {
    background-color: #ecf0f1;
    padding: 3rem;
    border-radius: 8px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-box p {
    font-size: 1.1rem;
    color: #7f8c8d;
    text-align: center;
}

.additional-info {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

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

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

.info-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    background-color: #ffffff;
    padding: 8rem 2rem;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #555;
}

#selectedServiceDisplay {
    font-weight: 700;
    color: #3498db;
    margin-top: 2rem;
}

.back-link {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-link:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.legal-content {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

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

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

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

.legal-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.legal-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-text li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ad-notice {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .service-card-wide,
    .service-card-wide.reverse {
        flex-direction: column;
    }

    .service-image-container {
        min-width: 100%;
        height: 300px;
    }

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

    .alt-services-layout {
        flex-direction: column;
    }

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

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

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

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

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

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