* {
    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: #333;
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

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

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

.main-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    font-style: italic;
    padding: 5px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.hero-left h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #000;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #555;
    max-width: 500px;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    background: #333;
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.problem-amplification {
    padding: 100px 40px;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.visual-block {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

.insight-section {
    background: #1a1a1a;
    color: #fff;
    padding: 120px 40px;
}

.centered-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.centered-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
}

.centered-content p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.centered-content a {
    color: #4CAF50;
    text-decoration: none;
}

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

.story-section {
    padding: 100px 40px;
    background: #f5f5f5;
}

.split-reverse {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.image-left {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.text-right {
    flex: 1;
}

.text-right h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.text-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.benefits-reveal {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-reveal h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

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

.benefit-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: #f9f9f9;
    border-left: 4px solid #000;
}

.benefit-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.benefit-card a {
    color: #4CAF50;
    text-decoration: none;
}

.testimonials-inline {
    background: #2c3e50;
    color: #fff;
    padding: 80px 40px;
}

.testimonial-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content blockquote {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 15px;
    font-style: normal;
    opacity: 0.8;
}

.services-pricing {
    padding: 100px 40px;
    background: #fff;
}

.services-pricing h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
}

.services-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item {
    display: flex;
    gap: 0;
    min-height: 400px;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.service-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.service-info .price {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 25px 0;
}

.select-service {
    padding: 14px 35px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background: #333;
    transform: translateY(-2px);
}

.select-service.selected {
    background: #4CAF50;
}

.form-section {
    padding: 100px 40px;
    background: #1a1a1a;
    color: #fff;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 17px;
    opacity: 0.9;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 500;
}

.form-group input {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #444;
    background: #2a2a2a;
    color: #fff;
}

.form-group input:focus {
    outline: none;
    border-color: #4CAF50;
}

.selected-display {
    padding: 14px;
    background: #2a2a2a;
    border: 1px solid #444;
    font-size: 16px;
}

.selected-display.active {
    border-color: #4CAF50;
}

.btn-submit {
    padding: 16px;
    background: #4CAF50;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-submit:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
}

.trust-elements {
    padding: 80px 40px;
    background: #f5f5f5;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.trust-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.disclaimer-section {
    padding: 60px 40px;
    background: #fff3cd;
}

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

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #856404;
}

.references-section {
    padding: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.references-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

.references-list {
    padding-left: 25px;
}

.references-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.references-list a {
    color: #4CAF50;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 10px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

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

    .split-container,
    .split-reverse,
    .testimonial-split {
        flex-direction: column;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .footer-content {
        flex-wrap: wrap;
    }

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

    .nav-container {
        flex-wrap: wrap;
    }
}