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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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: 20px;
}

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

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

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

.btn-accept {
    background: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background: #0052a3;
}

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

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

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

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    text-decoration: none;
}

.ad-disclosure {
    flex: 1;
    text-align: center;
}

.disclosure-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #0066cc;
}

.hero-asymmetric {
    padding: 80px 40px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-text-block {
    flex: 1;
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 32px;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -40px;
    background: #e0e0e0;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-stacked {
    padding: 100px 40px;
    background: #ffffff;
}

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

.intro-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.intro-narrow h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.problem-amplification {
    padding: 80px 40px;
    background: #f8f9fa;
}

.problem-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.problem-visual {
    flex: 0 0 45%;
    background: #e0e0e0;
}

.problem-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.problem-text {
    flex: 1;
    padding-top: 20px;
}

.problem-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.problem-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
}

.insight-reveal {
    padding: 100px 40px;
    background: #1a1a1a;
    color: #ffffff;
}

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

.insight-container h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.insight-cards {
    display: flex;
    gap: 40px;
}

.insight-card {
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #0066cc;
}

.card-number {
    font-size: 48px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 20px;
}

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

.insight-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}

.services-grid {
    padding: 100px 40px;
    background: #ffffff;
}

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

.services-container h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.service-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 0 0 calc(50% - 15px);
    padding: 40px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin: 20px 0;
}

.select-service {
    width: 100%;
    padding: 14px 24px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #0052a3;
}

.select-service.selected {
    background: #28a745;
}

.trust-building {
    padding: 100px 40px;
    background: #e9ecef;
}

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

.trust-container h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.trust-image {
    flex: 0 0 40%;
    background: #d0d0d0;
}

.trust-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.testimonials-inline {
    padding: 80px 40px;
    background: #ffffff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial-item {
    padding: 40px;
    background: #f8f9fa;
    border-left: 5px solid #0066cc;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #ffffff;
    text-align: center;
}

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

.cta-container h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

.cta-container p {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    padding: 18px 48px;
    background: #ffffff;
    color: #0066cc;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

.contact-form-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-form {
    background: #ffffff;
    padding: 50px;
    border: 1px solid #e0e0e0;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0052a3;
}

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

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    text-align: center;
    font-style: italic;
}

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.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;
    color: #999;
}

.page-header {
    padding: 80px 40px 60px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-header p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 40px;
    background: #ffffff;
}

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

.content-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-container h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 32px;
    color: #1a1a1a;
    font-weight: 600;
}

.content-container p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.content-container ul {
    margin: 20px 0;
    padding-left: 40px;
}

.content-container li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

.contact-info {
    padding: 80px 40px;
    background: #f8f9fa;
}

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

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.info-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.about-hero {
    padding: 100px 40px;
    background: #f8f9fa;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.about-visual {
    flex: 0 0 40%;
    background: #d0d0d0;
}

.about-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

.values-container h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 40px;
}

.value-item {
    flex: 1;
    padding: 40px;
    background: #f8f9fa;
    border-top: 5px solid #0066cc;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.services-intro {
    padding: 100px 40px 60px;
    background: #f8f9fa;
}

.services-intro-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-container h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 800;
}

.services-intro-container p {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
}

.services-detailed {
    padding: 80px 40px;
    background: #ffffff;
}

.services-detailed-container {
    max-width: 1400px;
    margin: 0 auto;
}

.detailed-service {
    margin-bottom: 60px;
    padding: 50px;
    background: #f8f9fa;
    border-left: 6px solid #0066cc;
}

.detailed-service h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.detailed-service p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.detailed-service .service-price {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin: 24px 0;
}

.thanks-page {
    padding: 120px 40px;
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    color: #ffffff;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
}

.thanks-container h1 {
    font-size: 52px;
    margin-bottom: 28px;
    font-weight: 800;
}

.thanks-container p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background: #ffffff;
    color: #28a745;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

@media (max-width: 1024px) {
    .hero-layout,
    .problem-layout,
    .trust-content,
    .about-content {
        flex-direction: column;
    }

    .insight-cards,
    .values-grid {
        flex-direction: column;
    }

    .service-items .service-card {
        flex: 0 0 100%;
    }

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

    .main-nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .intro-narrow h2,
    .services-container h2,
    .trust-container h2 {
        font-size: 28px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}