* {
    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.7;
    color: #2d3748;
    background-color: #ffffff;
}

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
}

.ad-disclosure {
    font-size: 11px;
    color: #718096;
    padding: 4px 12px;
    background-color: #f7fafc;
    border-radius: 4px;
    margin: 0 20px;
}

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

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

.nav a:hover {
    color: #2d3748;
}

.hero-section {
    display: flex;
    flex-direction: column;
    min-height: 600px;
    background-color: #f7fafc;
}

.hero-content {
    padding: 80px 24px 40px;
    max-width: 800px;
    margin: 0 auto;
}

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

.hero-content p {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    background-color: #e2e8f0;
}

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

.intro-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.intro-card {
    max-width: 700px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 28px;
    line-height: 1.3;
}

.intro-card p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
}

.services-preview {
    padding: 100px 0;
    background-color: #fafafa;
}

.services-preview h2 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 60px;
    text-align: center;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 22px);
    min-width: 320px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}

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

.card-image {
    width: 100%;
    height: 240px;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 20px;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.4;
}

.card-content p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 20px;
}

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

.select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.select-service:hover {
    background-color: #1a202c;
}

.insight-section {
    padding: 100px 0;
    background-color: #1a202c;
    color: #ffffff;
}

.insight-content {
    max-width: 800px;
    margin: 0 auto;
}

.insight-content h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #ffffff;
}

.insight-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #cbd5e0;
}

.testimonials-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f7fafc;
    border-left: 4px solid #2d3748;
}

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

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

.form-section {
    padding: 100px 0;
    background-color: #fafafa;
}

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

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

.form-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    background-color: #ffffff;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a5568;
}

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

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

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

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

.disclaimer-content p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.8;
}

.footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 60px 0 40px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

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

.references {
    border-top: 1px solid #2d3748;
    padding-top: 32px;
    margin-top: 32px;
}

.references h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
}

.references p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.references a {
    color: #90cdf4;
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
    min-width: 280px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #38a169;
}

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

.btn-reject:hover {
    background-color: #4a5568;
}

.page-hero {
    padding: 80px 0 60px;
    background-color: #f7fafc;
}

.page-hero h1 {
    font-size: 48px;
    color: #1a202c;
    text-align: center;
}

.page-hero p {
    font-size: 20px;
    color: #4a5568;
    text-align: center;
    margin-top: 16px;
}

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

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 320px;
}

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

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

.about-image {
    flex: 1;
    min-width: 320px;
    background-color: #e2e8f0;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.mission-block {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.mission-block h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 24px;
}

.mission-block p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 16px;
}

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

.team-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.team-section h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 24px;
    text-align: center;
}

.team-section p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-item {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 320px;
    background-color: #e2e8f0;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.service-details {
    flex: 1;
    min-width: 320px;
}

.service-details h2 {
    font-size: 28px;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.3;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 24px;
}

.service-details p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.service-details ul li {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.service-details ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #2d3748;
    font-weight: 700;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1.5;
    min-width: 320px;
}

.contact-block {
    margin-bottom: 48px;
}

.contact-block h2 {
    font-size: 28px;
    color: #1a202c;
    margin-bottom: 24px;
}

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

.contact-item h3 {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 600;
}

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

.contact-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-block a {
    color: #2d3748;
    text-decoration: underline;
}

.contact-image {
    flex: 1;
    min-width: 320px;
    background-color: #e2e8f0;
}

.contact-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.thanks-section {
    padding: 100px 0 60px;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-primary {
    background-color: #2d3748;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #e2e8f0;
    color: #2d3748;
}

.btn-secondary:hover {
    background-color: #cbd5e0;
}

.thanks-image {
    max-width: 800px;
    margin: 0 auto;
    background-color: #e2e8f0;
}

.thanks-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.next-steps {
    padding: 80px 0;
    background-color: #f7fafc;
}

.next-steps h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 60px;
    text-align: center;
}

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

.step-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #2d3748;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.step-card p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

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

.legal-content h1 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    color: #1a202c;
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 22px;
    color: #2d3748;
    margin-bottom: 16px;
    margin-top: 24px;
}

.legal-section p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section ul li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section a {
    color: #2d3748;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .ad-disclosure {
        margin: 0;
    }

    .nav {
        flex-wrap: wrap;
        gap: 16px;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .service-card {
        width: 100%;
    }

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

    .footer-grid {
        gap: 40px;
    }
}