* {
    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.7;
    color: #1e293b;
    background: #ffffff;
}

.ad-disclosure {
    background: #f1f5f9;
    color: #475569;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    border-bottom: 1px solid #e2e8f0;
}

.navigation {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #0f172a;
}

.hero-section {
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 3rem 2rem;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #f59e0b;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #d97706;
}

.intro-section {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.container-wide {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

.services-preview {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #0f172a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-info {
    padding: 1.8rem;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.service-info p {
    color: #64748b;
    margin-bottom: 1.2rem;
}

.price-tag {
    display: inline-block;
    background: #f0fdf4;
    color: #15803d;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

.cta-secondary {
    display: inline-block;
    background: #0f172a;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #1e293b;
}

.approach-section {
    padding: 5rem 2rem;
    background: #f8fafc;
}

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

.container-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.container-narrow p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

.container-narrow img {
    width: 100%;
}

.contact-form-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #64748b;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #0f172a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-button {
    width: 100%;
    background: #f59e0b;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #d97706;
}

.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 3rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #fbbf24;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept {
    background: #10b981;
    color: #ffffff;
}

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

.cookie-reject {
    background: #64748b;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #475569;
}

.page-header {
    background: #0f172a;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #cbd5e1;
}

.services-detail-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 8px;
}

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

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

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    color: #475569;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #475569;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.pricing-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-weight: 600;
    color: #0f172a;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #15803d;
}

.service-cta {
    display: inline-block;
    background: #f59e0b;
    color: #ffffff;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.service-cta:hover {
    background: #d97706;
}

.service-detail-image {
    flex: 1;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.pricing-note-section {
    padding: 3rem 2rem;
    background: #fef3c7;
}

.pricing-note-section h3 {
    margin-bottom: 1rem;
    color: #0f172a;
}

.about-content-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.values-section {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 1.5rem;
    background: #ffffff;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #0f172a;
}

.value-item p {
    color: #64748b;
}

.team-image-section {
    padding: 3rem 2rem;
    background: #ffffff;
}

.experience-section {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.approach-highlight-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.approach-content-wrapper {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.approach-text p {
    margin-bottom: 1.5rem;
    color: #475569;
}

.approach-image {
    flex: 1;
    max-width: 450px;
}

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

.contact-info-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #0f172a;
}

.contact-item p {
    color: #64748b;
}

.contact-image-wrapper {
    flex: 1;
    max-width: 500px;
}

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

.location-section {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.faq-contact-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #0f172a;
}

.faq-item p {
    color: #64748b;
}

.thanks-section {
    padding: 5rem 2rem;
    background: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: #f59e0b;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #d97706;
}

.btn-secondary {
    display: inline-block;
    background: #0f172a;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #1e293b;
}

.legal-content {
    padding: 4rem 2rem;
    background: #ffffff;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1e293b;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #475569;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #475569;
}

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

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

.legal-update {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #94a3b8;
}

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

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

    .service-card {
        flex: 1 1 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-container {
        flex-direction: column;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

    .value-item {
        flex: 1 1 100%;
    }

    .approach-content-wrapper {
        flex-direction: column;
    }

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

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

    .faq-item {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}