* {
    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;
    text-align: center;
    padding: 8px;
    font-size: 0.75rem;
    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: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

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

.nav-links a:hover {
    color: #2563eb;
}

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

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

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

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 500px;
}

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

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

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

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

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

.intro-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.intro-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #475569;
}

.intro-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 0.5rem;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    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;
    display: flex;
    flex-direction: column;
}

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

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

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

.service-card h3 {
    font-size: 1.375rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1e293b;
}

.service-card p {
    padding: 0 1.5rem;
    color: #475569;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
    padding: 0 1.5rem 1rem;
}

.select-service-btn {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #1d4ed8;
}

.form-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 5rem 2rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.form-container h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.form-container > p {
    color: #64748b;
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

.trust-section {
    background: #1e293b;
    color: #ffffff;
    padding: 5rem 2rem;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.trust-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 250px;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #60a5fa;
}

.trust-item p {
    color: #cbd5e1;
    line-height: 1.7;
}

.disclaimer-section {
    background: #fef3c7;
    padding: 2rem;
    text-align: center;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #78350f;
    line-height: 1.6;
}

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

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #ffffff;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.9;
}

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

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

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.page-content p {
    margin-bottom: 1.25rem;
    color: #475569;
    line-height: 1.8;
}

.page-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #475569;
}

.page-content ul li {
    margin-bottom: 0.75rem;
}

.contact-info {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: #475569;
}

.thanks-container {
    max-width: 700px;
    margin: 5rem auto;
    padding: 3rem;
    text-align: center;
    background: #f0fdf4;
    border-radius: 16px;
    border: 2px solid #86efac;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #166534;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.125rem;
    color: #15803d;
    margin-bottom: 1rem;
}

.thanks-container a {
    display: inline-block;
    margin-top: 2rem;
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-container a:hover {
    background: #1d4ed8;
}

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

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

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

    .intro-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}