* {
    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: #333;
    background-color: #fff;
}

.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: #2c2c2c;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

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

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

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

.ad-label {
    background-color: #ff6b35;
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.btn-accept {
    background-color: #ff6b35;
    color: #fff;
}

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-reject:hover {
    background-color: #fff;
    color: #2c2c2c;
}

.hero-visual {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 700px;
    background-color: #1a1a1a;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 40px;
    color: #fff;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background-color: #ff6b35;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.section-story {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.section-story h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.section-story h3 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.story-text {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

.inline-image {
    margin: 50px 0;
    background-color: #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-insight {
    padding: 100px 20px;
    background-color: #fff;
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.insight-image {
    flex: 1;
    background-color: #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

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

.section-benefits {
    padding: 100px 20px;
    background-color: #2c2c2c;
    color: #fff;
}

.section-benefits h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
}

.benefit-card {
    background-color: #3a3a3a;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.benefit-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ff6b35;
}

.benefit-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #ddd;
}

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

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.testimonial-author {
    font-weight: 600;
    color: #2c2c2c;
}

.section-offer {
    padding: 100px 20px;
    background-color: #fff;
}

.section-offer h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c2c2c;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
}

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

.service-select-intro p {
    font-size: 17px;
    color: #555;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.service-card.selected {
    border: 3px solid #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e5e5e5;
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 25px 20px 25px;
    color: #555;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #ff6b35;
    margin: 20px 25px;
}

.btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px 25px;
    padding: 15px;
    background-color: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.section-form {
    padding: 80px 20px;
    background-color: #f4f4f4;
}

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

.contact-form {
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.section-scientific {
    padding: 60px 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.section-scientific h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.reference-note {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.references-list {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.references-list p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.ref-number {
    font-weight: 700;
    color: #ff6b35;
    margin-right: 8px;
}

.references-list a {
    color: #2c5aa0;
    text-decoration: none;
}

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

.section-disclaimer {
    padding: 60px 20px;
    background-color: #fff5e6;
    border-top: 2px solid #ffcc80;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    text-align: center;
    font-style: italic;
}

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

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

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 14px;
}

.page-hero {
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

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

.section-content {
    padding: 100px 20px;
    background-color: #fff;
}

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

.content-text {
    flex: 1;
}

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

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

.content-image {
    flex: 1;
    background-color: #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.value-item {
    background-color: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #ff6b35;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.section-approach {
    padding: 100px 20px;
    background-color: #fff;
}

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

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

.approach-card {
    flex: 1;
    min-width: 280px;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.approach-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.approach-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.section-cta-simple {
    padding: 80px 20px;
    background-color: #ff6b35;
    text-align: center;
    color: #fff;
}

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

.section-cta-simple p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    padding: 18px 45px;
    background-color: #fff;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.section-services-detailed {
    padding: 60px 20px;
}

.service-detailed {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

.service-image {
    flex: 1;
    background-color: #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #444;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

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

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 18px;
}

.service-price-large {
    font-size: 42px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 25px;
}

.btn-service {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ff6b35;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    font-size: 17px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

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

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

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

.contact-info-box h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c2c2c;
}

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

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

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.contact-note {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

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

.map-box {
    position: relative;
    background-color: #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

.map-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 30px;
    color: #fff;
}

.map-overlay p {
    font-size: 16px;
    line-height: 1.6;
}

.section-faq {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.section-faq h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c2c2c;
}

.faq-item {
    background-color: #fff;
    padding: 35px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.thanks-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

.thanks-message {
    font-size: 19px;
    margin-bottom: 40px;
    color: #555;
}

.thanks-details {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.thanks-steps {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px auto;
}

.thanks-steps li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 17px;
    color: #444;
    border-bottom: 1px solid #e0e0e0;
}

.thanks-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
    font-size: 20px;
}

.thanks-steps li:last-child {
    border-bottom: none;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ff6b35;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    font-size: 17px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    font-size: 17px;
    border: 2px solid #2c2c2c;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c2c2c;
    color: #fff;
}

.section-legal {
    padding: 60px 20px;
    background-color: #fff;
}

.legal-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
    font-style: italic;
}

.section-legal h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.section-legal h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #ff6b35;
}

.section-legal p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.section-legal ul {
    margin: 20px 0 20px 30px;
}

.section-legal li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #444;
}

.section-legal a {
    color: #ff6b35;
    text-decoration: none;
}

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

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

.cookies-table th {
    background-color: #f4f4f4;
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: #2c2c2c;
    border-bottom: 2px solid #ddd;
}

.cookies-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

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

    .nav-main {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-image-container {
        height: 500px;
    }

    .insight-flex,
    .content-split,
    .service-detailed,
    .contact-layout {
        flex-direction: column;
    }

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

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

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

    .contact-form {
        padding: 30px 20px;
    }
}