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

:root {
    --primary-color: #2d5f3f;
    --primary-dark: #1a3d28;
    --primary-light: #4a8c5f;
    --accent-color: #f4a261;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-light);
}

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

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    max-width: 90%;
    width: auto;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.hero-card {
    margin-top: 100px;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px;
    margin-left: 20px;
    margin-right: 20px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    max-width: 700px;
    margin: 40px;
    box-shadow: var(--shadow-hover);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-secondary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-size: 1rem;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.story-cards {
    padding: 80px 0;
}

.story-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.story-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.story-card p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.problem-section {
    padding: 80px 0;
    background: white;
}

.problem-card-large {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.problem-card-large h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

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

.problem-item {
    flex: 1 1 calc(50% - 15px);
    background: white;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.problem-number {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.problem-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.insight-cards {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.insight-card {
    flex: 1 1 calc(33.333% - 20px);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.insight-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.insight-content {
    padding: 30px;
}

.insight-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.insight-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.trust-section {
    padding: 80px 0;
    background: white;
}

.trust-card-main {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.trust-card-main h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.trust-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-feature {
    display: flex;
    gap: 25px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trust-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.trust-text h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.trust-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.testimonials-cards {
    padding: 80px 0;
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.cta-section-mid {
    padding: 80px 0;
    background: white;
}

.cta-card-inline {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-hover);
}

.cta-card-inline h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-card-inline p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

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

.product-card {
    flex: 1 1 calc(33.333% - 20px);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.product-content > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.product-features span {
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-old {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--text-light);
    font-weight: 400;
    margin-left: 10px;
}

.select-product {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 14px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.select-product:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.benefits-section {
    padding: 80px 0;
    background: white;
}

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

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.urgency-card {
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow-hover);
}

.urgency-card h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
}

.urgency-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.urgency-highlight {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    margin-top: 30px;
    border-left: 4px solid var(--primary-color);
}

.urgency-highlight p {
    color: var(--text-dark);
    font-size: 1.2rem;
}

.form-section {
    padding: 80px 0;
    background: white;
}

.form-card {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 24px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.form-card h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--text-dark);
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

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

.sticky-cta-text {
    font-weight: 600;
    color: var(--text-dark);
}

.sticky-cta-button {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.sticky-cta-button:hover {
    background: var(--primary-dark);
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    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;
    color: var(--text-dark);
    line-height: 1.6;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--primary-color);
    color: white;
}

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-reject {
    background: var(--bg-light);
    color: var(--text-dark);
}

.cookie-reject:hover {
    background: var(--border-color);
}

.page-hero {
    margin-top: 120px;
    padding: 80px 0 60px;
    text-align: center;
    background: white;
    border-radius: 24px;
    margin-left: 20px;
    margin-right: 20px;
    box-shadow: var(--shadow);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-section,
.values-section,
.mission-section,
.process-section,
.team-section,
.products-intro,
.guarantee-section,
.contact-section,
.faq-section {
    padding: 80px 0;
}

.about-card-main,
.mission-card,
.intro-card {
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.about-card-main h2,
.mission-card h2,
.intro-card h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-card-main p,
.mission-card p,
.intro-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-grid,
.process-grid,
.guarantee-grid,
.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card,
.process-card,
.guarantee-card,
.faq-card {
    flex: 1 1 calc(50% - 15px);
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.value-card:hover,
.process-card:hover,
.guarantee-card:hover,
.faq-card:hover {
    transform: translateY(-5px);
}

.value-icon,
.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    opacity: 0.3;
}

.value-card h3,
.process-card h3,
.guarantee-card h3,
.faq-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-card p,
.process-card p,
.guarantee-card p,
.faq-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.mission-intro {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 500;
}

.mission-content p {
    font-size: 1.1rem;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.stat-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    min-width: 200px;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-hover);
}

.cta-card h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.products-catalog {
    padding: 60px 0;
}

.product-details {
    margin-bottom: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.product-details h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.product-details ul {
    list-style: none;
    padding-left: 0;
}

.product-details li {
    color: var(--text-light);
    padding: 6px 0;
    font-size: 0.95rem;
}

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

.contact-info-card,
.contact-map-card {
    flex: 1 1 calc(50% - 20px);
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-info-card h2,
.contact-map-card h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.map-placeholder {
    background: var(--bg-light);
    height: 300px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.map-text {
    text-align: center;
    color: var(--text-light);
}

.map-text p:first-child {
    font-size: 3rem;
    margin-bottom: 10px;
}

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

.legal-card {
    background: white;
    padding: 60px;
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.legal-card h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-card ul {
    margin: 20px 0;
    padding-left: 30px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-card li {
    margin-bottom: 10px;
}

.legal-card a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.legal-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

.thanks-hero {
    margin-top: 120px;
    padding: 80px 0;
}

.thanks-card {
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow-hover);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-content {
    margin-bottom: 40px;
}

.thanks-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.thanks-service {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 12px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.thanks-next {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.thanks-next h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.thanks-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.thanks-step p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.thanks-info {
    padding: 60px 0;
}

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

.info-card {
    flex: 1 1 calc(33.333% - 20px);
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .floating-nav {
        padding: 12px 20px;
        gap: 20px;
        width: calc(100% - 40px);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        margin-top: 10px;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .problem-item,
    .insight-card,
    .testimonial-card,
    .product-card,
    .benefit-card,
    .value-card,
    .process-card,
    .guarantee-card,
    .faq-card,
    .contact-info-card,
    .contact-map-card,
    .info-card {
        flex: 1 1 100%;
    }

    .problem-card-large,
    .trust-card-main,
    .form-card,
    .about-card-main,
    .mission-card,
    .legal-card,
    .thanks-card {
        padding: 40px 25px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }

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

    .sticky-cta-button {
        width: 100%;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-card {
        margin-top: 90px;
    }

    .hero-overlay {
        margin: 20px;
        padding: 40px 25px;
    }

    .page-hero {
        margin-top: 100px;
        padding: 60px 20px 40px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
}