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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 10px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

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

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

.nav a:hover {
    color: #e74c3c;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(231,76,60,0.92) 0%, rgba(142,68,173,0.88) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 700px;
}

.hero-section p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 35px;
    max-width: 600px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.story-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.story-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #34495e;
    line-height: 1.8;
}

.insight-section {
    padding: 90px 0;
    background-color: #ffffff;
}

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

.insight-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
}

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

.insight-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.insight-card p {
    margin: 0 25px 25px;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-section {
    padding: 90px 0;
    background: linear-gradient(to bottom, #ecf0f1 0%, #ffffff 100%);
}

.services-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #95a5a6;
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    color: #5a6c7d;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.btn-select {
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 80px 0;
    background-color: #2c3e50;
}

.testimonials-section h2 {
    font-size: 38px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #34495e;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

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

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

.form-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-section h2 {
    font-size: 38px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
}

.form-section > .container > p {
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    margin-bottom: 45px;
    opacity: 0.9;
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

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

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 250px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    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: #667eea;
}

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

.btn-submit:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.disclaimer-text {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -3px 20px rgba(0,0,0,0.2);
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: #7f8c8d;
}

.page-hero {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    color: #ffffff;
    opacity: 0.9;
}

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

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

.about-intro img {
    flex: 1;
    min-width: 350px;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

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

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e74c3c;
}

.value-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

.process-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e74c3c;
    min-width: 80px;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-step p {
    color: #5a6c7d;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

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

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

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

.service-detail-content {
    flex: 1;
    min-width: 350px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    color: #5a6c7d;
    line-height: 1.6;
}

.service-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: #e74c3c;
    margin-top: 25px;
}

.service-detail-image {
    flex: 1;
    min-width: 350px;
}

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

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

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

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

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

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

.contact-item p {
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    min-width: 350px;
}

.contact-map img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

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

.contact-form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-form-section > .container > p {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 45px;
}

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

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

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

.thanks-content p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-next-steps {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-next-steps ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next-steps ul li {
    padding: 10px 0;
    color: #5a6c7d;
    position: relative;
    padding-left: 30px;
}

.thanks-next-steps ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.btn-return {
    display: inline-block;
    padding: 14px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-return:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.legal-page {
    padding: 60px 0;
    min-height: 60vh;
}

.legal-intro {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-page h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.legal-page h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page ul li {
    color: #5a6c7d;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table thead {
    background-color: #34495e;
}

.cookie-table thead th {
    color: #ffffff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.cookie-table tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36px;
    }

    .hero-section p {
        font-size: 17px;
    }

    .services-grid {
        gap: 20px;
    }

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

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

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

    .nav {
        gap: 15px;
        font-size: 14px;
    }

    .process-step {
        flex-direction: column;
    }

    .step-number {
        min-width: auto;
    }
}