* {
    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-main {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #e74c3c;
}

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 4px 10px;
    border-radius: 4px;
    margin: 0 20px;
}

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

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

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

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #34495e;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.8), rgba(52, 73, 94, 0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.intro-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
}

.problem-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.split-content p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #34495e;
}

.split-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

.insight-section {
    padding: 80px 20px;
    background-color: #34495e;
    color: #ecf0f1;
}

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

.insight-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.insight-section a {
    color: #e74c3c;
    text-decoration: underline;
}

.benefits-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.benefit-card {
    flex: 1 1 calc(50% - 40px);
    min-width: 280px;
    max-width: 500px;
    padding: 30px;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 16px;
    color: #34495e;
}

.services-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 320px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

.service-content {
    padding: 24px;
}

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

.service-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #34495e;
}

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

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

.btn-select-service:hover {
    background-color: #c0392b;
}

.testimonials-section {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

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

.testimonial-item {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #e74c3c;
    border-radius: 6px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 16px;
    color: #34495e;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #7f8c8d;
}

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ecf0f1;
    border-radius: 10px;
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
    color: #2c3e50;
}

.form-wrapper p {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
    color: #7f8c8d;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.service-display {
    display: none;
    margin-bottom: 20px;
    padding: 16px;
    background-color: #ffffff;
    border-radius: 6px;
    border: 2px solid #e74c3c;
}

.service-display p {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
}

.error-message {
    display: none;
    padding: 12px;
    background-color: #e74c3c;
    color: #ffffff;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

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

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

.trust-section {
    padding: 80px 20px;
    background-color: #34495e;
}

.trust-content {
    text-align: center;
    color: #ecf0f1;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #ecf0f1;
}

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

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

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

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

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

.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: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.references {
    margin-bottom: 30px;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px 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;
    margin: 0;
    font-size: 14px;
}

.cookie-actions {
    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.3s;
}

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

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

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

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

.page-hero {
    padding: 80px 20px;
    background-color: #34495e;
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-intro {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.about-image-main {
    flex: 1;
    background-color: #bdc3c7;
}

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

.about-text-main {
    flex: 1;
}

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

.about-text-main p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #34495e;
}

.philosophy-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.philosophy-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: center;
    color: #2c3e50;
}

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

.methodology-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.methodology-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.method-card {
    flex: 1 1 calc(50% - 40px);
    min-width: 280px;
    max-width: 500px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.method-number {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 12px;
}

.method-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.method-card p {
    font-size: 16px;
    color: #34495e;
}

.values-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.values-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c3e50;
}

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

.value-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #e74c3c;
}

.value-item p {
    font-size: 16px;
    color: #34495e;
}

.values-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

.science-section {
    padding: 80px 20px;
    background-color: #34495e;
    color: #ecf0f1;
}

.science-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: center;
    color: #ffffff;
}

.science-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-about-section {
    padding: 80px 20px;
    background-color: #e74c3c;
    text-align: center;
}

.cta-about-content {
    color: #ffffff;
}

.cta-about-content h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-about-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-about-content .cta-primary {
    background-color: #ffffff;
    color: #e74c3c;
}

.cta-about-content .cta-primary:hover {
    background-color: #ecf0f1;
    color: #c0392b;
}

.services-detailed {
    padding: 80px 20px;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

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

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

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

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

.service-description {
    font-size: 18px;
    margin-bottom: 24px;
    color: #34495e;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 24px;
    color: #2c3e50;
}

.service-includes {
    list-style: none;
    margin-bottom: 24px;
}

.service-includes li {
    padding-left: 28px;
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
    color: #34495e;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.comparison-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

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

.comparison-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-card {
    flex: 1;
}

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

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

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

.contact-detail p {
    font-size: 16px;
    color: #34495e;
}

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

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

.contact-text-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.faq-item {
    margin-bottom: 32px;
    padding: 24px;
    background-color: #ffffff;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.7;
}

.info-section {
    padding: 60px 20px;
    background-color: #ecf0f1;
}

.info-text {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

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

.thanks-main-text {
    font-size: 20px;
    margin-bottom: 40px;
    color: #34495e;
}

.selected-service-box {
    display: none;
    padding: 20px;
    background-color: #ecf0f1;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #7f8c8d;
}

.service-name-thanks {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
    color: #2c3e50;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-content p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

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

.thanks-info-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.thanks-info-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: center;
    color: #2c3e50;
}

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

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

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

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

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
    color: #34495e;
}

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

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.7;
    color: #34495e;
}

.legal-page a {
    color: #e74c3c;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #c0392b;
}

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

    .nav-main {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

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

    .split-layout,
    .split-layout.reverse,
    .about-layout,
    .values-layout,
    .service-detail-layout,
    .service-detail-layout.reverse,
    .contact-layout {
        flex-direction: column;
    }

    .benefit-card,
    .method-card {
        flex: 1 1 100%;
    }

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

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

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

    .thanks-content h1 {
        font-size: 32px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
