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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #222;
    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.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-buttons {
    display: flex;
    gap: 10px;
}

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

.btn-accept {
    background: #2563eb;
    color: #fff;
}

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

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

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

.navbar {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    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;
    height: 70px;
}

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

.ad-label {
    font-size: 11px;
    color: #666;
    padding: 4px 12px;
    background: #f3f4f6;
    border-radius: 12px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
    align-items: center;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #111;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.hero-right {
    flex: 1;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-section {
    background: #f8fafc;
    padding: 80px 40px;
}

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111;
}

.intro-content p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
}

.problem-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-image {
    flex: 1;
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

.problem-text {
    flex: 1;
}

.problem-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #111;
}

.problem-list {
    list-style: none;
    margin-bottom: 24px;
}

.problem-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: #333;
}

.problem-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-size: 24px;
    font-weight: 700;
}

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

.approach-split {
    display: flex;
    background: #1e293b;
    color: #fff;
    min-height: 700px;
}

.approach-text {
    flex: 1.2;
    padding: 80px 60px;
}

.approach-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.approach-text > p {
    font-size: 18px;
    margin-bottom: 48px;
    color: #cbd5e1;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    min-width: 50px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step p {
    color: #cbd5e1;
    line-height: 1.6;
}

.approach-image {
    flex: 0.8;
    background: #334155;
    overflow: hidden;
}

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

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

.services-showcase h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
    color: #111;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 320px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #111;
}

.service-card p {
    padding: 0 24px 16px;
    color: #555;
    line-height: 1.6;
}

.service-price {
    padding: 0 24px;
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.btn-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #111;
}

.form-header p {
    font-size: 16px;
    color: #666;
}

.selected-service-display {
    background: #eff6ff;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    border-left: 4px solid #2563eb;
}

.selected-service-display strong {
    color: #2563eb;
}

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

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

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

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

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

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

.trust-section {
    padding: 100px 40px;
    background: #fff;
}

.trust-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #111;
}

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

.testimonial {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 280px;
    padding: 32px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 16px;
    font-style: italic;
}

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

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

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

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

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

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

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

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

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

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

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #2563eb;
}

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

.footer-bottom p {
    color: #9ca3af;
    font-size: 13px;
}

.page-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff;
    padding: 100px 40px 80px;
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.header-content p {
    font-size: 20px;
    color: #cbd5e1;
}

.about-intro-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111;
}

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

.about-image {
    flex: 1;
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #111;
}

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

.value-card {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2563eb;
}

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

.team-section {
    padding: 100px 40px;
    background: #fff;
}

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

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

.team-intro h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #111;
}

.team-intro p {
    font-size: 18px;
    color: #666;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.expertise-item {
    padding: 32px;
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

.expertise-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111;
}

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

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

.methodology-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.methodology-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.method-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.method-number {
    min-width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.method-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.method-content p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 16px;
}

.cta-section {
    padding: 100px 40px;
    background: #f8fafc;
}

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

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #111;
}

.cta-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.services-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #111;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

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

.service-detail-content h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #111;
}

.service-includes {
    list-style: none;
    margin-bottom: 32px;
}

.service-includes li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: #333;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-size: 18px;
    font-weight: 700;
}

.service-cta {
    display: inline-block;
    padding: 14px 32px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #111;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2563eb;
}

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

.contact-map {
    flex: 1;
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta {
    background: #f8fafc;
    padding: 80px 40px;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #111;
}

.cta-box p {
    font-size: 17px;
    color: #666;
    margin-bottom: 32px;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #111;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item {
    padding: 32px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111;
}

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

.thanks-section {
    min-height: 500px;
    padding: 100px 40px;
    background: #f8fafc;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #111;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 32px;
}

.service-confirmation {
    margin-bottom: 40px;
}

.service-selected {
    font-size: 17px;
    color: #2563eb;
    background: #eff6ff;
    padding: 16px 24px;
    border-radius: 6px;
    display: inline-block;
}

.next-steps {
    margin: 60px 0;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #111;
}

.steps-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.step-box {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 220px;
    padding: 32px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
}

.step-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111;
}

.step-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 32px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 16px 32px;
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #fff;
}

.additional-info {
    padding: 80px 40px;
    background: #fff;
}

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

.info-container h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #111;
}

.info-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 260px;
    padding: 32px;
    background: #f8fafc;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111;
}

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

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

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #111;
}

.legal-page .last-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #111;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #333;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

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

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

.legal-page strong {
    color: #111;
}

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

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

    .approach-split {
        flex-direction: column;
    }

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

    .testimonial {
        flex: 1 1 100%;
    }

    .nav-menu {
        display: none;
    }

    .about-intro-split {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
    }

    .value-card,
    .step-box,
    .info-card {
        flex: 1 1 100%;
    }
}