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

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

.header {
    background: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

.nav a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: color 0.2s;
}

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

.ad-notice {
    background: #fef3c7;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    color: #92400e;
    font-weight: 500;
}

.hero-card {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.hero-text-card {
    flex: 1;
}

.hero-text-card h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text-card p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-btn {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37,99,235,0.2);
}

.hero-image-card {
    flex: 1;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.intro-cards {
    padding: 80px 0;
    background: #ffffff;
}

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

.info-card {
    flex: 1;
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

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

.info-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1e293b;
}

.info-card p {
    color: #64748b;
    line-height: 1.6;
}

.problem-section {
    padding: 80px 0;
    background: #fefce8;
}

.problem-card-split {
    display: flex;
    gap: 50px;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.problem-image {
    flex: 1;
    background: #e2e8f0;
}

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

.problem-text {
    flex: 1;
    padding: 50px 50px 50px 0;
}

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

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

.services-section {
    padding: 80px 0;
    background: #ffffff;
}

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

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

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

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

.service-card.selected {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37,99,235,0.2);
}

.service-image {
    width: 100%;
    height: 200px;
    background: #e2e8f0;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #1e293b;
}

.service-content p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
}

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

.select-service-btn {
    width: 100%;
    background: #e0f2fe;
    color: #0369a1;
    border: 2px solid #0369a1;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service-btn:hover {
    background: #0369a1;
    color: #ffffff;
}

.service-card.selected .select-service-btn {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

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

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-card h2 {
    font-size: 30px;
    margin-bottom: 16px;
    color: #1e293b;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

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

.submit-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37,99,235,0.2);
}

.trust-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.testimonial-card {
    flex: 1;
    background: #fafafa;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

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

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

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

.approach-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.approach-card h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px;
    color: #1e293b;
}

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

.approach-item {
    flex: 0 0 calc(50% - 20px);
}

.approach-number {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    font-size: 20px;
    font-weight: 700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-bottom: 16px;
}

.approach-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e293b;
}

.approach-item p {
    color: #64748b;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
}

.cta-card {
    text-align: center;
    color: #ffffff;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-btn-large {
    background: #ffffff;
    color: #2563eb;
    border: none;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    line-height: 1.7;
}

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

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

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

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

.footer-disclaimer {
    background: #0f172a;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #94a3b8;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

.cookie-content a {
    color: #60a5fa;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.btn-reject {
    background: #475569;
    color: #ffffff;
}

.btn-reject:hover {
    background: #334155;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.thanks-card {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

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

.thanks-card p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-service {
    background: #f0f9ff;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-weight: 600;
    color: #1e40af;
}

.back-btn {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

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

.legal-page {
    padding: 60px 0;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1e293b;
}

.legal-content h2 {
    font-size: 26px;
    margin: 40px 0 20px;
    color: #1e293b;
}

.legal-content h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: #334155;
}

.legal-content p {
    margin-bottom: 18px;
    color: #475569;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    color: #475569;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-page {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-grid {
    display: flex;
    gap: 50px;
}

.contact-info-card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-info-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1e293b;
}

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

.contact-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    font-size: 17px;
    color: #1e293b;
    line-height: 1.7;
}

.about-page {
    padding: 80px 0;
    background: #ffffff;
}

.about-hero {
    text-align: center;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 44px;
    margin-bottom: 24px;
    color: #1e293b;
}

.about-hero p {
    font-size: 20px;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content-card {
    background: #f8fafc;
    padding: 60px;
    border-radius: 16px;
    margin-bottom: 50px;
}

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

.about-content-card p {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-image-section {
    margin: 60px 0;
}

.about-image-section img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-grid,
    .problem-card-split,
    .card-grid,
    .services-grid,
    .testimonials-grid,
    .approach-grid,
    .footer-grid,
    .contact-grid {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}