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

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

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

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

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

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

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

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

.hero-card {
    padding: 60px 0;
    background-color: #ffffff;
}

.hero-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.hero-text-card {
    flex: 1;
}

.hero-text-card h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-text-card p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 30px;
}

.hero-image-card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e8eaf6;
}

.hero-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-btn {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.cta-btn-secondary {
    display: inline-block;
    background-color: #ecf0f1;
    color: #2c3e50;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-left: 15px;
}

.cta-btn-secondary:hover {
    background-color: #d5dbdb;
}

.features-grid {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cards-row {
    display: flex;
    gap: 30px;
}

.feature-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.feature-card p {
    color: #546e7a;
    line-height: 1.7;
}

.services-showcase {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.services-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    gap: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.service-image {
    flex: 0 0 400px;
    background-color: #e8eaf6;
}

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

.service-content {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
}

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

.service-content p {
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: auto;
}

.select-service-btn {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.contact-form-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

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

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

.form-card > p {
    text-align: center;
    color: #546e7a;
    margin-bottom: 35px;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select {
    padding: 14px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

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

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

.trust-cards {
    display: flex;
    gap: 30px;
}

.trust-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.trust-card p {
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.trust-author {
    font-weight: 600;
    color: #2c3e50;
}

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

.cta-card-final {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card-final h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-card-final p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: #b2bec3;
    line-height: 1.7;
}

.footer-col a {
    display: block;
    color: #b2bec3;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3e50;
    color: #b2bec3;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
    padding: 25px;
    z-index: 1000;
    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;
    color: #2c3e50;
}

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

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

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

.cookie-btn.accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

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

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

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

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

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

.story-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-card-large {
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.story-card-large img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #e8eaf6;
}

.story-content {
    padding: 50px;
}

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

.story-content p {
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

.expertise-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.expertise-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

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

.expertise-card p {
    color: #546e7a;
    line-height: 1.7;
}

.values-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.values-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 35px;
}

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

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

.value-item p {
    color: #546e7a;
    line-height: 1.7;
}

.values-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e8eaf6;
}

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

.team-approach {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-approach h2 {
    text-align: center;
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.approach-cards {
    display: flex;
    gap: 25px;
}

.approach-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    text-align: center;
}

.approach-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

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

.approach-card p {
    color: #546e7a;
    line-height: 1.7;
}

.disclaimer-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff3cd;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.disclaimer-card p {
    color: #856404;
    line-height: 1.8;
}

.services-detailed {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    display: flex;
    gap: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

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

.service-detail-content {
    flex: 1;
    padding: 50px;
}

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

.service-detail-content > p {
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 17px;
}

.service-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.service-benefits li {
    color: #546e7a;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

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

.service-detail-image {
    flex: 0 0 450px;
    background-color: #e8eaf6;
}

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

.service-pricing-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
}

.price-label {
    font-size: 14px;
    color: #546e7a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 36px;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-content {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.contact-info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

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

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

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

.contact-detail p {
    color: #546e7a;
    line-height: 1.8;
}

.contact-image-card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e8eaf6;
}

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

.contact-approach {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.process-cards {
    display: flex;
    gap: 25px;
}

.process-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
}

.process-step {
    width: 60px;
    height: 60px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

.process-card p {
    color: #546e7a;
    line-height: 1.7;
}

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.faq-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

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

.faq-card p {
    color: #546e7a;
    line-height: 1.7;
}

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

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thanks-card > p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
}

.thanks-details {
    margin: 25px 0;
}

.service-selected {
    background-color: #e8f5e9;
    padding: 15px;
    border-radius: 6px;
    color: #2c3e50;
}

.thanks-info {
    color: #546e7a;
    line-height: 1.7;
    margin: 25px 0;
}

.thanks-actions {
    margin-top: 35px;
}

.next-steps-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.next-steps-cards {
    display: flex;
    gap: 30px;
}

.step-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

.step-card p {
    color: #546e7a;
    line-height: 1.7;
}

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

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
}

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

.legal-date {
    color: #7f8c8d;
    margin-bottom: 40px;
    font-style: italic;
}

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

.legal-document h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-document p {
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-document ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-document li {
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-document a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
    }

    .cards-row {
        flex-direction: column;
    }

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

    .service-image {
        flex: 0 0 250px;
    }

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

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

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

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

    .approach-cards {
        flex-direction: column;
    }

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

    .service-detail-image {
        flex: 0 0 300px;
    }

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

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

    .next-steps-cards {
        flex-direction: column;
    }

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