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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.5rem 1rem;
    background: #ecf0f1;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.hero-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.hero-right {
    flex: 1;
    background-color: #e8e8e8;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.intro-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-image {
    flex: 1;
    background-color: #f5f5f5;
}

.intro-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.8;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.problem-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

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

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

.problem-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.insight-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
}

.insight-left {
    flex: 1;
    padding: 5rem 3rem;
    background: #fff;
}

.insight-left h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.insight-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.8;
}

.insight-right {
    flex: 1;
    background-color: #ddd;
}

.insight-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

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

.trust-cards {
    display: flex;
    gap: 2.5rem;
}

.trust-card {
    flex: 1;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.trust-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.services-highlight {
    padding: 5rem 2rem;
    background: #fff;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

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

.services-intro p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #666;
    line-height: 1.6;
}

.service-price {
    padding: 0 1.5rem 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
}

.select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #2980b9;
}

.select-service.selected {
    background: #27ae60;
}

.testimonials-section {
    padding: 5rem 2rem;
    background: #2c3e50;
    color: #fff;
}

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

.testimonials-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

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

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-left {
    flex: 1;
    padding: 3rem;
    background: #f8f9fa;
}

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: #444;
    position: relative;
    padding-left: 2rem;
}

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

.form-right {
    flex: 1;
    padding: 3rem;
}

.form-right form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-right input,
.form-right select,
.form-right textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1.25rem;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #ecf0f1;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background: #1a1a1a;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.reference {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.reference a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .insight-split,
    .form-container {
        flex-direction: column;
    }

    .problem-grid,
    .trust-cards,
    .services-grid,
    .testimonials-split {
        flex-direction: column;
    }

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

    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
    }
}