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

.ad-disclosure {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1e40af;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #1e40af;
}

.hero-section {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px 60px;
    width: 100%;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
}

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

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

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.intro-section {
    padding: 100px 30px;
    background: #f9fafb;
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.intro-text {
    flex: 2;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1f2937;
    line-height: 1.3;
}

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

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.4;
}

.image-break {
    width: 100%;
    background: #e5e7eb;
}

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

.approach-section {
    padding: 100px 30px;
    background: #ffffff;
}

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

.approach-image {
    flex: 1;
    background: #f3f4f6;
}

.approach-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1f2937;
}

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

.approach-list {
    list-style: none;
    margin-top: 30px;
}

.approach-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #374151;
}

.approach-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 18px;
}

.services-section {
    padding: 100px 30px;
    background: #f9fafb;
}

.services-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1f2937;
}

.services-header p {
    font-size: 18px;
    color: #6b7280;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    background: #e5e7eb;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1f2937;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
    padding: 0 25px;
    margin-bottom: 20px;
}

.select-service {
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 14px 25px;
    margin: 0 25px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #5568d3;
}

.testimonials-section {
    padding: 100px 30px;
    background: #1f2937;
    color: #ffffff;
}

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

.testimonials-container h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.testimonial-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 12px;
}

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

.testimonial-author {
    font-weight: 600;
    color: #a5b4fc;
    font-size: 15px;
}

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

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1f2937;
}

.form-intro p {
    font-size: 17px;
    color: #6b7280;
}

.contact-form {
    background: #f9fafb;
    padding: 45px;
    border-radius: 12px;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group input[readonly] {
    background: #e5e7eb;
    color: #374151;
}

.submit-button {
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 16px 50px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #5568d3;
}

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

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

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

.main-footer {
    background: #111827;
    color: #d1d5db;
    padding: 60px 30px 30px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background: #667eea;
    color: #ffffff;
}

.cookie-btn.reject {
    background: #6b7280;
    color: #ffffff;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

.content-section {
    padding: 80px 30px;
    background: #ffffff;
}

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1f2937;
}

.content-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4b5563;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background: #f3f4f6;
}

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

.values-section {
    padding: 100px 30px;
    background: #f9fafb;
}

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

.values-container h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #1f2937;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1f2937;
}

.value-item p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

.team-section {
    padding: 100px 30px;
    background: #ffffff;
}

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

.team-container h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1f2937;
}

.team-container p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 30px;
    line-height: 1.7;
}

.team-image {
    width: 100%;
    background: #e5e7eb;
    margin: 40px 0;
}

.team-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.methodology-section {
    padding: 100px 30px;
    background: #f9fafb;
}

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

.methodology-content {
    flex: 1;
}

.methodology-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1f2937;
}

.methodology-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4b5563;
    line-height: 1.7;
}

.methodology-image {
    flex: 1;
    background: #f3f4f6;
}

.methodology-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.difference-section {
    padding: 100px 30px;
    background: #ffffff;
}

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

.difference-container h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #1f2937;
}

.difference-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.difference-item {
    background: #f9fafb;
    padding: 35px;
    border-radius: 12px;
}

.difference-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1f2937;
}

.difference-item p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

.services-detail-section {
    padding: 60px 30px;
    background: #ffffff;
}

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1f2937;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4b5563;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #374151;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #667eea;
    font-weight: 700;
    font-size: 20px;
}

.service-pricing {
    margin: 30px 0;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    color: #6b7280;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
}

.service-detail-image {
    flex: 1;
    background: #f3f4f6;
}

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

.cta-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.cta-container h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.contact-info-section {
    padding: 60px 30px;
    background: #ffffff;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1f2937;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1f2937;
}

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

.contact-image {
    flex: 1;
    background: #f3f4f6;
}

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

.location-section {
    padding: 80px 30px;
    background: #f9fafb;
}

.location-container {
    max-width: 900px;
    margin: 0 auto;
}

.location-container h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1f2937;
}

.location-container p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4b5563;
    line-height: 1.7;
}

.info-section {
    padding: 80px 30px;
    background: #ffffff;
}

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

.info-container h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #1f2937;
}

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

.info-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #f9fafb;
    padding: 35px;
    border-radius: 12px;
}

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

.info-card p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 30px;
    background: #f9fafb;
}

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

.thanks-content {
    flex: 1;
}

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

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

.thanks-details {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid #667eea;
}

.thanks-details p {
    margin: 0;
    font-size: 17px;
    color: #1f2937;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.thanks-image {
    flex: 1;
    background: #e5e7eb;
}

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

.next-steps-section {
    padding: 80px 30px;
    background: #ffffff;
}

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

.next-steps-container h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #1f2937;
}

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

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #667eea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

.step-item p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

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

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1f2937;
}

.legal-container h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #1f2937;
}

.legal-container h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #374151;
}

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

.legal-container ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-container ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4b5563;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

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

    .intro-wrapper,
    .approach-container,
    .content-wrapper,
    .methodology-container,
    .service-detail,
    .contact-container,
    .thanks-container {
        flex-direction: column;
    }

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

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

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

    .testimonial-grid,
    .steps-grid {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 35px;
    }
}