* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

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

.btn-primary {
    background: #3182ce;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #2c5aa0;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1a202c;
}

.header {
    background: #ffffff;
    padding: 1.25rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d3748;
}

.ad-label {
    font-size: 0.75rem;
    color: #718096;
    background: #edf2f7;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
}

.nav {
    display: flex;
    gap: 2rem;
}

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

.nav a:hover {
    color: #2d3748;
}

.hero-section {
    margin-top: 0;
}

.hero-image {
    height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3rem;
    max-width: 800px;
    margin-bottom: 1rem;
}

.hero-overlay p {
    font-size: 1.25rem;
    max-width: 600px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.intro-section {
    background: #f7fafc;
}

.intro-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.intro-card p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.story-section {
    background: #ffffff;
}

.story-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.story-card {
    flex: 1;
    min-width: 300px;
    background: #edf2f7;
    padding: 2.5rem;
    border-radius: 8px;
}

.story-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.story-card p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.problem-section {
    background: #2d3748;
    color: #ffffff;
}

.problem-content h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.problem-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.problem-number {
    font-size: 3rem;
    font-weight: bold;
    color: #63b3ed;
    margin-bottom: 1rem;
}

.problem-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.problem-card p {
    color: #e2e8f0;
}

.insight-section {
    background: #f7fafc;
}

.insight-wrapper {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.insight-text {
    flex: 1;
    min-width: 300px;
}

.insight-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.insight-text p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.insight-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.testimonials-section {
    background: #ffffff;
}

.testimonials-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #2d3748;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #edf2f7;
    padding: 2rem;
    border-radius: 8px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #2d3748;
}

.services-preview {
    background: #f7fafc;
}

.services-preview h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #2d3748;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 1.75rem;
}

.service-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.service-content p {
    color: #4a5568;
    margin-bottom: 1.25rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3182ce;
    margin-bottom: 1.25rem;
}

.btn-service {
    width: 100%;
    background: #3182ce;
    color: #ffffff;
    border: none;
    padding: 0.875rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #2c5aa0;
}

.form-section {
    background: #ffffff;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #f7fafc;
    padding: 3rem;
    border-radius: 8px;
}

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
    text-align: center;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    background: #ffffff;
}

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

.btn-submit {
    background: #3182ce;
    color: #ffffff;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #2c5aa0;
}

.disclaimer-section {
    background: #edf2f7;
}

.disclaimer-box {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #f6ad55;
}

.disclaimer-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.disclaimer-box p {
    color: #4a5568;
    line-height: 1.8;
}

.footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 3rem 0 1rem;
}

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

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

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

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

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

.page-header p {
    font-size: 1.25rem;
    color: #e2e8f0;
}

.services-detail {
    background: #ffffff;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2d3748;
    text-align: center;
}

.contact-details {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 8px;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.6;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d3748;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.legal-content p {
    margin-bottom: 1.25rem;
    color: #4a5568;
    line-height: 1.8;
}

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

.legal-content li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.thanks-icon {
    font-size: 4rem;
    color: #48bb78;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.thanks-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.thanks-service {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-service strong {
    color: #2d3748;
}

.btn-home {
    display: inline-block;
    background: #3182ce;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #2c5aa0;
}

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

    .hero-overlay p {
        font-size: 1rem;
    }

    .nav {
        flex-direction: column;
        gap: 0.75rem;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .page-header h1 {
        font-size: 1.75rem;
    }

    .legal-content h1 {
        font-size: 1.75rem;
    }
}