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

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background: #1a2332;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

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

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2c3e50;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,35,50,0.85), rgba(52,152,219,0.65));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

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

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

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231,76,60,0.4);
}

section {
    padding: 80px 20px;
}

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

.content-wrapper.narrow {
    max-width: 800px;
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a2332;
    line-height: 1.3;
}

.story-section p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #34495e;
}

.insight-box {
    background: #ecf0f1;
    padding: 30px;
    margin: 40px 0;
    border-left: 5px solid #3498db;
    border-radius: 4px;
}

.insight-box p {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.dark-bg {
    background: #34495e;
    color: #ffffff;
}

.dark-bg h2 {
    color: #ffffff;
}

.dark-bg p {
    color: #ecf0f1;
}

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

.text-column {
    flex: 1;
}

.image-column {
    flex: 1;
    background-color: #2c3e50;
}

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

.text-column h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.text-column p {
    font-size: 18px;
    margin-bottom: 20px;
}

.insight-list {
    list-style: none;
    margin: 30px 0;
}

.insight-list li {
    padding: 15px 0 15px 30px;
    position: relative;
    font-size: 18px;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 20px;
}

.trust-section {
    background: #f8f9fa;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    text-align: center;
}

.trust-section p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #34495e;
}

.services-section {
    background: #ffffff;
}

.services-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
    color: #1a2332;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

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

.service-card {
    background: #ffffff;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    flex: 0 1 360px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

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

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

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

.service-card p {
    font-size: 16px;
    margin: 0 20px 20px;
    color: #7f8c8d;
    flex-grow: 1;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
    margin: 0 20px 20px;
}

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

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

.light-bg {
    background: #ecf0f1;
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a2332;
}

.testimonial-block {
    background: #ffffff;
    padding: 35px;
    margin-bottom: 25px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-text {
    font-size: 19px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 600;
}

.form-section {
    background: #ffffff;
}

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #1a2332;
}

.form-section > .content-wrapper > p {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

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

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

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

.submit-button:hover {
    background: #229954;
    transform: translateY(-2px);
}

.disclaimer-section {
    background: #f8f9fa;
    padding: 40px 20px;
}

.disclaimer-text {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background: #1a2332;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

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

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

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

.footer-column p {
    font-size: 15px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

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

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

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

.cookie-content p {
    margin: 0;
    font-size: 15px;
    flex: 1;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cookie-accept:hover {
    background: #229954;
}

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

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

.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.lead-text {
    font-size: 20px;
    opacity: 0.9;
}

.legal-page {
    padding: 60px 20px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 38px;
    color: #1a2332;
    margin-bottom: 10px;
}

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

.legal-content h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 15px;
}

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

.legal-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 20px 25px;
}

.legal-content ul li {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 10px;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.about-content {
    padding: 80px 20px;
    background: #ffffff;
}

.values-section {
    padding: 80px 20px;
}

.value-item {
    margin-bottom: 35px;
}

.value-item h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 17px;
    color: #ecf0f1;
}

.approach-section {
    padding: 80px 20px;
    background: #ffffff;
}

.approach-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a2332;
}

.approach-section > .content-wrapper > p {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.process-step {
    background: #f8f9fa;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 8px;
    border-left: 5px solid #3498db;
}

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

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

.process-step p {
    font-size: 17px;
    color: #34495e;
}

.team-section {
    padding: 80px 20px;
}

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 25px;
    color: #1a2332;
}

.team-section p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 20px;
}

.cta-section {
    background: #3498db;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
}

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

.services-detail-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.service-detail-card {
    background: #ffffff;
    margin-bottom: 60px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.service-detail-card .split-content {
    flex-wrap: wrap;
    gap: 0;
}

.service-detail-image {
    flex: 1;
    min-width: 350px;
    background-color: #ecf0f1;
}

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

.service-detail-content {
    flex: 1;
    min-width: 350px;
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 30px;
    color: #1a2332;
    margin-bottom: 15px;
}

.price-highlight {
    font-size: 26px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-detail-content > p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 25px;
}

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 16px;
    color: #34495e;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-cta {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

.guarantee-section {
    padding: 80px 20px;
}

.guarantee-section h2 {
    font-size: 36px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 25px;
}

.guarantee-section p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 20px;
}

.contact-info-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

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

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

.contact-info-card h2,
.contact-form-card h2 {
    font-size: 28px;
    color: #1a2332;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
}

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

.faq-section {
    padding: 80px 20px;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a2332;
}

.faq-item {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

.faq-item p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.6;
}

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

.thanks-card {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    font-size: 50px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 36px;
    color: #1a2332;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    color: #34495e;
    margin-bottom: 30px;
}

.service-confirmation {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.service-confirmation p {
    font-size: 17px;
    color: #2c3e50;
    margin: 0;
}

.next-steps-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.next-steps-list {
    list-style: none;
    margin: 20px 0 40px;
    text-align: left;
    display: inline-block;
}

.next-steps-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 17px;
    color: #34495e;
}

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

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

.button-primary,
.button-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.button-primary {
    background: #3498db;
    color: #ffffff;
}

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

.button-secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

.button-secondary:hover {
    background: #bdc3c7;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

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

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

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 400px;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .page-header h1 {
        font-size: 32px;
    }

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

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

    .service-detail-content {
        min-width: 100%;
        padding: 30px 20px;
    }

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

    .thanks-card {
        padding: 40px 20px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
        text-align: center;
    }
}