* {
    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;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

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

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

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

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

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

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

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

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

.hero-text {
    flex: 1;
    color: #ffffff;
}

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

.hero-text p {
    font-size: 19px;
    margin-bottom: 35px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #667eea;
    padding: 15px 35px;
    border: 2px solid #667eea;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #667eea;
    color: #ffffff;
}

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

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

.intro-narrative {
    padding: 100px 20px;
    background: #f8f9fa;
}

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

.intro-narrative p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.problem-section {
    padding: 100px 20px;
    background: #ffffff;
}

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

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

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.split-content {
    flex: 1;
}

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

.split-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.problem-list {
    list-style: none;
    margin-bottom: 25px;
}

.problem-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #5a6c7d;
}

.problem-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 24px;
}

.services-overview {
    padding: 100px 20px;
    background: #f8f9fa;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

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

.service-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.service-select {
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-select:hover {
    background: #5568d3;
}

.method-section {
    padding: 100px 20px;
    background: #ffffff;
}

.method-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.method-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.method-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.method-step {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

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

.method-step p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 0;
}

.testimonials-inline {
    padding: 100px 20px;
    background: #2c3e50;
    color: #ffffff;
}

.testimonial {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.9;
}

.results-section {
    padding: 100px 20px;
    background: #ffffff;
}

.results-list {
    list-style: none;
    margin-top: 25px;
}

.results-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #5a6c7d;
}

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

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

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

.contact-form-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    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: #667eea;
}

.btn-submit {
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #5568d3;
}

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

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

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.8;
    font-size: 14px;
}

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

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

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    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: 2px solid #ffffff;
}

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

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.about-story {
    padding: 100px 20px;
    background: #ffffff;
}

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

.about-story p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.team-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.values-section {
    padding: 100px 20px;
    background: #ffffff;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 35px;
    background: #f8f9fa;
    border-radius: 12px;
}

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

.value-card p {
    font-size: 16px;
    color: #5a6c7d;
}

.experience-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.experience-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.experience-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.approach-detail {
    padding: 100px 20px;
    background: #ffffff;
}

.disclaimer-section {
    padding: 80px 20px;
    background: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.disclaimer-text {
    font-size: 16px;
    color: #856404;
    line-height: 1.7;
}

.cta-about {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.services-detailed {
    padding: 60px 20px;
    background: #ffffff;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 12px;
}

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

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

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

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

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

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

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #5a6c7d;
}

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pricing-notes {
    padding: 80px 20px;
    background: #f8f9fa;
}

.pricing-notes h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing-notes p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #5a6c7d;
}

.cta-services {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.cta-services h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-services p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.contact-main {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 35px;
}

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

.contact-detail p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-detail .no-link {
    color: #5a6c7d;
}

.contact-note {
    padding: 25px;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.contact-note p {
    font-size: 16px;
    color: #856404;
    margin: 0;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-approach {
    padding: 100px 20px;
    background: #f8f9fa;
}

.contact-approach h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-approach p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.thanks-hero {
    padding: 120px 20px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
    color: #ffffff;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 19px;
    margin-bottom: 20px;
    opacity: 0.95;
}

#serviceConfirmation {
    font-weight: 600;
    font-size: 20px;
    margin: 30px 0;
}

.thanks-next {
    margin: 50px 0;
    text-align: left;
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.thanks-next ul {
    list-style: none;
    font-size: 17px;
}

.thanks-next ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.thanks-next ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
}

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

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

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

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

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

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #5a6c7d;
}

.legal-content a {
    color: #667eea;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content em {
    color: #95a5a6;
    font-size: 15px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table thead {
    background: #f8f9fa;
}

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #e1e8ed;
}

.cookie-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e1e8ed;
    color: #5a6c7d;
}

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

    .hero-content,
    .container-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-text h1,
    .page-hero h1 {
        font-size: 32px;
    }

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

    .service-card {
        min-width: 100%;
    }

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

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

    .service-detail-card {
        flex-direction: column;
        padding: 30px 20px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        flex: 1;
    }

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