* {
    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;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #4caf50;
    color: #ffffff;
}

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

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

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 32px;
    align-items: center;
}

.ad-notice {
    font-size: 12px;
    color: #757575;
    border: 1px solid #e0e0e0;
    padding: 4px 12px;
    border-radius: 4px;
}

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

.nav-right a:hover {
    color: #546e7a;
}

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    padding: 80px 60px;
}

.hero-left h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #37474f;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 32px;
    color: #546e7a;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.hero-right {
    position: relative;
    overflow: hidden;
    background: #263238;
}

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

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image,
.intro-content {
    flex: 1;
}

.intro-image {
    position: relative;
    overflow: hidden;
    background: #eceff1;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

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

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #546e7a;
    max-width: 540px;
}

.insight-section {
    padding: 100px 60px;
    background: #37474f;
    color: #ffffff;
}

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

.insight-text,
.insight-visual {
    flex: 1;
}

.insight-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
}

.insight-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.insight-visual {
    position: relative;
    overflow: hidden;
    background: #263238;
    border-radius: 8px;
}

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

.services-section {
    padding: 100px 60px;
    background: #fafafa;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 20px;
    color: #546e7a;
}

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

.service-card {
    flex: 1 1 calc(50% - 16px);
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #eceff1;
}

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

.service-card p {
    margin: 0 24px 16px;
    color: #546e7a;
    font-size: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 24px 16px;
}

.btn-select {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 100px 60px;
    background: #ffffff;
}

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

.form-left,
.form-right {
    flex: 1;
}

.form-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.form-left p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #546e7a;
}

.form-note {
    font-style: italic;
    color: #78909c;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1a252f;
}

.testimonials-section {
    padding: 100px 60px;
    background: #f5f7fa;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
}

.testimonial {
    flex: 1;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    color: #37474f;
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: #546e7a;
    font-size: 14px;
}

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

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

.disclaimer-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #e65100;
}

.disclaimer-content p {
    font-size: 16px;
    color: #5d4037;
    line-height: 1.7;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 60px 20px;
}

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

.footer-section {
    flex: 1;
}

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

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

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

.footer-section ul li {
    margin-bottom: 8px;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #78909c;
}

.content-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.content-page h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.content-page h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.content-page h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #37474f;
}

.content-page p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #546e7a;
}

.content-page ul,
.content-page ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.content-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #546e7a;
}

.contact-info {
    background: #f5f7fa;
    padding: 32px;
    border-radius: 8px;
    margin: 40px 0;
}

.contact-info p {
    margin-bottom: 12px;
}

.thanks-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 40px;
}

.thanks-container h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #546e7a;
}

.thanks-cta {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 40px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.thanks-cta:hover {
    background: #1a252f;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .nav-right {
        flex-direction: column;
        gap: 12px;
    }

    .hero-split,
    .intro-split,
    .form-split,
    .insight-container,
    .testimonials-grid,
    .footer-content {
        flex-direction: column;
    }

    .hero-left,
    .intro-content,
    .form-left {
        padding: 40px 30px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .services-grid {
        padding: 0 20px;
    }

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