* {
    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: #1f2937;
    background-color: #f9fafb;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    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-buttons {
    display: flex;
    gap: 10px;
}

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

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

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

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    flex-wrap: wrap;
    gap: 20px;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #6b7280;
    padding: 4px 12px;
    background-color: #f3f4f6;
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #1f2937;
    transition: all 0.3s;
}

.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #e0e7ff 0%, #f9fafb 100%);
}

.hero-card {
    background-color: #fff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.hero-card h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1f2937;
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #fff;
    color: #2563eb;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #2563eb;
    cursor: pointer;
    font-size: 14px;
}

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

.intro-section {
    padding: 80px 0;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.card {
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 280px;
    transition: all 0.3s;
}

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

.card-icon {
    margin-bottom: 20px;
}

.card h3 {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 12px;
}

.card p {
    color: #6b7280;
    font-size: 15px;
}

.why-section {
    padding: 80px 0;
    background-color: #fff;
}

.content-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f9fafb;
    padding: 48px;
    border-radius: 12px;
}

.content-card h2 {
    font-size: 32px;
    color: #1f2937;
    margin-bottom: 24px;
}

.content-card p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 16px;
}

.services-preview {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #1f2937;
    margin-bottom: 48px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

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

.service-card p {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.approach-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.approach-card {
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    border-left: 4px solid #2563eb;
}

.approach-card h3 {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 12px;
}

.approach-card p {
    color: #6b7280;
    font-size: 15px;
}

.case-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dbeafe 0%, #f9fafb 100%);
}

.case-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.case-card {
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 300px;
}

.case-quote {
    font-size: 17px;
    color: #1f2937;
    font-style: italic;
    margin-bottom: 16px;
}

.case-author {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

.form-section {
    padding: 80px 0;
    background-color: #fff;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9fafb;
    padding: 48px;
    border-radius: 12px;
}

.form-card h2 {
    font-size: 32px;
    color: #1f2937;
    margin-bottom: 16px;
}

.form-card > p {
    color: #6b7280;
    margin-bottom: 32px;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fef3c7;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    background-color: #fff;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.disclaimer-card h3 {
    font-size: 20px;
    color: #92400e;
    margin-bottom: 12px;
}

.disclaimer-card p {
    color: #78350f;
    font-size: 14px;
    line-height: 1.7;
}

.footer {
    background-color: #1f2937;
    color: #9ca3af;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    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: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

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

.thanks-hero {
    padding: 100px 0;
    text-align: center;
}

.thanks-card {
    background-color: #fff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.thanks-card h1 {
    font-size: 36px;
    color: #1f2937;
    margin-bottom: 20px;
}

.thanks-card p {
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 16px;
}

.contact-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #e0e7ff 0%, #f9fafb 100%);
}

.contact-info-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.contact-info-card {
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
}

.contact-info-card h3 {
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 16px;
}

.contact-info-card p {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 8px;
}

.about-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #e0e7ff 0%, #f9fafb 100%);
}

.about-content {
    padding: 80px 0;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-text h2 {
    font-size: 32px;
    color: #1f2937;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 16px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 60px;
}

.value-card {
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 280px;
}

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

.value-card p {
    color: #6b7280;
    font-size: 15px;
}

.services-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #e0e7ff 0%, #f9fafb 100%);
}

.services-detail {
    padding: 80px 0;
}

.detail-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.detail-card h3 {
    font-size: 26px;
    color: #1f2937;
    margin-bottom: 16px;
}

.detail-card p {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 12px;
}

.detail-card ul {
    list-style: none;
    padding-left: 0;
}

.detail-card ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #4b5563;
}

.detail-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.legal-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #e0e7ff 0%, #f9fafb 100%);
}

.legal-content {
    padding: 80px 0;
    background-color: #fff;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f9fafb;
    padding: 48px;
    border-radius: 12px;
}

.legal-text h2 {
    font-size: 28px;
    color: #1f2937;
    margin-bottom: 20px;
    margin-top: 32px;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 12px;
    margin-top: 24px;
}

.legal-text p {
    color: #4b5563;
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-text ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.legal-text ul li {
    color: #4b5563;
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 12px;
        padding-top: 20px;
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-card {
        padding: 32px 24px;
    }

    .hero-card h1 {
        font-size: 32px;
    }

    .cards-grid,
    .services-grid,
    .approach-grid,
    .case-grid {
        flex-direction: column;
    }

    .card,
    .service-card,
    .approach-card,
    .case-card {
        min-width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}