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

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

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

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

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

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

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

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

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

.hero-section {
    display: flex;
    align-items: stretch;
    min-height: 550px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: #ffffff;
}

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

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

.hero-image {
    flex: 1;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 16px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
}

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

.cards-intro {
    padding: 80px 20px 40px;
    text-align: center;
    background: #f8f9fa;
}

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

.cards-intro p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-cards {
    padding: 40px 20px 80px;
    background: #f8f9fa;
}

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

.benefit-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.card-image {
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.benefit-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #2c3e50;
}

.benefit-card p {
    padding: 0 24px 24px;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 20px;
    background: #ffffff;
}

.services-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.service-cards-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 260px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 32px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s, background 0.3s;
}

.service-card:hover {
    border-color: #667eea;
    background: #ffffff;
}

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

.service-card p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.card-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.card-link:hover {
    color: #764ba2;
}

.trust-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.trust-section .container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.trust-content p {
    color: #5a6c7d;
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.7;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: #2c3e50;
    font-weight: 500;
}

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

.trust-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    max-width: 500px;
}

.trust-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.submit-btn {
    background: #667eea;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

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

.disclaimer-section {
    padding: 40px 20px;
    background: #fff8e1;
    border-top: 2px solid #ffd54f;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    color: #856404;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
}

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

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

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

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

.footer-col p {
    color: #bdc3c7;
    font-size: 14px;
}

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

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

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

.footer-col ul li a:hover {
    color: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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 {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

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

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

.cookie-btn.reject {
    background: #95a5a6;
    color: #ffffff;
}

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

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

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

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

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

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    max-width: 500px;
}

.story-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.story-content p {
    color: #5a6c7d;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.values-cards {
    padding: 80px 20px;
    background: #f8f9fa;
}

.values-cards h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.value-card {
    flex: 1;
    min-width: 240px;
    background: #ffffff;
    padding: 32px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

.value-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #5a6c7d;
    font-size: 17px;
    line-height: 1.7;
}

.team-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    background: #f8f9fa;
    padding: 40px 50px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 8px;
}

.stat-label {
    color: #5a6c7d;
    font-size: 15px;
}

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

.approach-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.approach-content p {
    color: #5a6c7d;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    max-width: 500px;
}

.approach-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

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

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

.service-detail-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 30px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-detail-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-header {
    background: #f8f9fa;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h2 {
    font-size: 28px;
    color: #2c3e50;
    margin: 0;
}

.service-price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
}

.service-body {
    padding: 32px;
}

.service-body p {
    color: #5a6c7d;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.7;
}

.service-body h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-body ul {
    margin-bottom: 28px;
    padding-left: 20px;
}

.service-body ul li {
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-cta {
    display: inline-block;
    background: #667eea;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.service-cta:hover {
    background: #764ba2;
}

.pricing-note {
    padding: 60px 20px;
    background: #f8f9fa;
}

.pricing-note h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
    text-align: center;
}

.pricing-note p {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.contact-details-card {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.contact-details-card h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 28px;
}

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

.contact-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-image-wrapper {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.contact-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.response-info,
.location-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.response-info h2,
.location-section h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
    text-align: center;
}

.response-info p,
.location-section p {
    max-width: 800px;
    margin: 0 auto 16px;
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
}

.faq-contact {
    padding: 60px 20px;
    background: #ffffff;
}

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

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 28px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

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

.faq-item p {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 15px;
}

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

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

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

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.service-confirmation {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    color: #2e7d32;
    font-weight: 600;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    text-align: left;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: #667eea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-primary {
    background: #667eea;
    color: #ffffff;
}

.btn-primary:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #e9ecef;
    color: #2c3e50;
}

.btn-secondary:hover {
    background: #dee2e6;
    transform: translateY(-2px);
}

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

.legal-page .container {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.legal-page p {
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 16px;
    padding-left: 30px;
}

.legal-page ul li {
    color: #5a6c7d;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-page strong {
    color: #2c3e50;
}

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

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

.legal-update {
    margin-top: 40px;
    font-style: italic;
    color: #95a5a6;
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .hero-section,
    .story-layout,
    .trust-section .container,
    .approach-layout,
    .contact-layout {
        flex-direction: column;
    }

    .hero-content {
        padding: 40px 30px;
    }

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

    .nav-links {
        gap: 20px;
    }

    .card-grid,
    .service-cards-grid,
    .steps-grid,
    .faq-grid {
        flex-direction: column;
    }

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

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

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