* {
    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: #333;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo h1 {
    font-size: 28px;
    color: #2c3e50;
    font-weight: 700;
}

.main-nav ul {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    color: #555;
    font-size: 15px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #2980b9;
}

.ad-notice {
    font-size: 11px;
    color: #888;
    padding: 5px 10px;
    background: #f5f5f5;
    border-radius: 4px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #333;
    transition: all 0.3s;
}

.hero-section {
    position: relative;
    background: #1a1a1a;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.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(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    display: flex;
    align-items: center;
}

.hero-text {
    color: #fff;
    max-width: 600px;
}

.hero-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #2980b9;
    color: #fff;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #3498db;
}

.cta-button-secondary {
    display: inline-block;
    background: #95a5a6;
    color: #fff;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-button-secondary:hover {
    background: #7f8c8d;
}

.intro-section {
    background: #f9f9f9;
    padding: 80px 0;
}

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: #444;
    text-align: center;
}

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

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

.section-header-centered h3 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header-centered p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 250px;
    overflow: hidden;
    background: #ddd;
}

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

.service-content {
    padding: 30px;
}

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

.service-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.service-price {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
}

.why-us-section {
    background: #ecf0f1;
    padding: 100px 0;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    background: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.feature-list {
    margin-top: 30px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.additional-services-section {
    padding: 100px 0;
    background: #fff;
}

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

.horizontal-services {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.h-service-item {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #fafafa;
    padding: 30px;
    border-radius: 8px;
}

.h-service-icon {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #ddd;
}

.h-service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.h-service-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

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

.form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
}

.form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-wrapper h3 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

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

.service-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.btn-submit {
    width: 100%;
    background: #2980b9;
    color: #fff;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #3498db;
}

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

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

.trust-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.site-footer {
    background: #1a1a1a;
    color: #bbb;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

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

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

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

.footer-col a {
    color: #bbb;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 25px 20px;
    z-index: 10000;
    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;
    gap: 30px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
}

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

.btn-cookie-accept {
    background: #27ae60;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-cookie-accept:hover {
    background: #2ecc71;
}

.btn-cookie-reject {
    background: #95a5a6;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.page-header-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.page-header-section h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.about-intro-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.large-text {
    font-size: 24px;
    line-height: 1.7;
    color: #444;
    text-align: center;
}

.about-story-section {
    padding: 100px 0;
    background: #fff;
}

.about-story-section h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-story-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

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

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.team-section {
    padding: 100px 0;
    background: #fff;
}

.team-section h3 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

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

.step-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #667eea;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

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

.cta-section {
    background: #2c3e50;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.cta-section h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.services-detail-section {
    padding: 80px 0;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

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

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

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

.service-features {
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 20px;
}

.pricing-info {
    margin-top: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    color: #555;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

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

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

.pricing-notes-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.pricing-notes-section h3 {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
    color: #2c3e50;
}

.pricing-notes-section p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
    text-align: center;
}

.contact-info-section {
    padding: 80px 0;
}

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

.contact-card {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 8px;
}

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

.contact-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
}

.email-text {
    color: #2980b9;
    font-weight: 500;
}

.contact-info-additional {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-info-additional h3 {
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
    color: #2c3e50;
}

.contact-info-additional p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
    text-align: center;
}

.map-section {
    padding: 80px 0;
    background: #fff;
}

.map-section h3 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.thanks-content {
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 20px;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

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

.next-steps {
    margin: 40px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

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

.next-steps li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    color: #555;
}

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

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

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

.legal-intro {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-page-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page-section h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page-section h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-page-section ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page-section li {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-page-section a {
    color: #2980b9;
    text-decoration: underline;
}

.legal-page-section a:hover {
    color: #3498db;
}

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

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

    .hero-text h2 {
        font-size: 32px;
    }

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

    .hero-image-wrapper {
        height: 400px;
    }

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

    .split-content,
    .split-content.reverse {
        flex-direction: column;
    }

    .horizontal-services .h-service-item {
        flex-direction: column;
    }

    .h-service-icon {
        width: 100%;
        height: 200px;
    }

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

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

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

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

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

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

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

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

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }
}