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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --danger-color: #ef4444;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.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;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
}

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

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

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.hero-visual {
    margin-top: 100px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    text-align: center;
    padding: 80px 20px 40px;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-image {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image img {
    width: 100%;
    height: auto;
}

.cta-hero {
    display: inline-block;
    padding: 18px 48px;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.cta-hero:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.story-intro {
    padding: 120px 20px;
    background-color: var(--bg-light);
}

.story-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.story-highlight {
    background-color: var(--bg-white);
    padding: 40px;
    border-left: 5px solid var(--primary-color);
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.story-highlight p {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
}

.problem-amplification {
    padding: 120px 20px;
}

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

.split-left,
.split-right {
    flex: 1;
}

.split-left img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.split-right h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.split-right p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--danger-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.cta-inline {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

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

.insight-reveal {
    padding: 120px 20px;
    background-color: var(--bg-light);
}

.insight-reveal h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.insight-reveal > p {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 60px;
}

.insight-cards {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

.insight-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.insight-card p {
    color: var(--text-light);
}

.method-introduction {
    padding: 120px 20px;
}

.method-introduction h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.method-introduction p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.method-visual {
    margin: 60px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.trust-building {
    padding: 100px 20px;
    background-color: var(--text-dark);
    color: var(--bg-white);
}

.trust-building h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
}

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

.logo-item {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--bg-light);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.testimonials-flow {
    padding: 120px 20px;
}

.testimonial {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 40px;
}

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

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

.how-it-works {
    padding: 120px 20px;
    background-color: var(--bg-light);
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.workflow-step {
    background-color: var(--bg-white);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    min-width: 80px;
}

.workflow-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.workflow-step p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.cta-section {
    display: block;
    text-align: center;
    padding: 18px 48px;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    margin-top: 40px;
    transition: all 0.3s ease;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.cta-section:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.products-reveal {
    padding: 120px 20px;
}

.products-reveal h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.products-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.product-card {
    flex: 1 1 calc(50% - 20px);
    background-color: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.product-featured {
    border: 3px solid var(--accent-color);
}

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

.product-image {
    height: 250px;
    overflow: hidden;
}

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

.product-card h3 {
    font-size: 1.5rem;
    margin: 25px 25px 15px;
    font-weight: 700;
}

.product-card > p {
    margin: 0 25px 20px;
    color: var(--text-light);
}

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

.product-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--text-dark);
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.product-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 25px;
}

.old-price {
    font-size: 1.3rem;
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 10px;
}

.btn-select-product {
    margin: 0 25px 25px;
    padding: 14px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-product:hover {
    background-color: var(--secondary-color);
}

.urgency-block {
    padding: 100px 20px;
    background-color: var(--danger-color);
    color: white;
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.urgency-cta {
    margin-top: 40px;
}

.cta-urgent {
    display: inline-block;
    padding: 18px 48px;
    background-color: white;
    color: var(--danger-color);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-urgent:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
}

.guarantee-section {
    padding: 100px 20px;
}

.guarantee-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.guarantee-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
}

.form-section {
    padding: 120px 20px;
    background-color: var(--bg-light);
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.order-form {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.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;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    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: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.sticky-content span {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    padding: 12px 32px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #d97706;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 80px 20px 30px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: var(--bg-light);
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: var(--bg-light);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.page-header {
    margin-top: 120px;
    padding: 80px 20px 60px;
    text-align: center;
    background-color: var(--bg-light);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

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

.about-story {
    padding: 100px 20px;
}

.about-story h2 {
    font-size: 2.2rem;
    margin: 60px 0 30px;
    font-weight: 700;
}

.about-story p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.story-block {
    background-color: var(--bg-light);
    padding: 40px;
    margin: 40px 0;
    border-radius: 12px;
}

.story-block p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
}

.learnings-list {
    list-style: none;
    margin: 30px 0;
}

.learnings-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.learnings-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.team-section {
    margin-top: 80px;
}

.team-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    flex: 1;
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 1rem;
    color: var(--text-light);
}

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

.value-item {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-about {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--bg-light);
}

.cta-about h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.services-list {
    padding: 80px 20px;
}

.service-item {
    margin-bottom: 100px;
}

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

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

.service-text {
    flex: 1;
}

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-item h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-item ul {
    list-style: none;
    margin: 15px 0;
}

.service-item ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--text-dark);
}

.service-item ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 30px 0 20px;
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: var(--secondary-color);
}

.service-featured-bg {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.featured-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-featured {
    background-color: var(--accent-color);
}

.btn-featured:hover {
    background-color: #d97706;
}

.comparison-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.comparison-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
}

.comparison-table {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table td:last-child {
    font-weight: 600;
    color: var(--primary-color);
}

.faq-services {
    padding: 80px 20px;
}

.faq-services h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    margin-bottom: 30px;
}

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

.faq-item p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-info {
    padding: 80px 20px;
}

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

.contact-details {
    flex: 1;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    border-radius: 12px;
    margin-bottom: 20px;
}

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

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

.contact-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.map-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.map-info p {
    color: var(--text-light);
}

.contact-reasons {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.contact-reasons h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-align: center;
}

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

.reason-item {
    flex: 1 1 calc(33.333% - 20px);
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.reason-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.reason-item p {
    color: var(--text-light);
}

.quick-links-section {
    padding: 80px 20px;
}

.quick-links-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
}

.quick-links {
    display: flex;
    gap: 30px;
}

.quick-link-item {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.quick-link-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quick-link-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.quick-link-item p {
    color: var(--text-light);
}

.thanks-hero {
    margin-top: 120px;
    padding: 80px 20px;
    text-align: center;
    background-color: var(--bg-light);
}

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

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

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

.thanks-content {
    padding: 80px 20px;
}

.thanks-box {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.thanks-box h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

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

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

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-light);
}

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

.thanks-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.thanks-info ul {
    list-style: none;
}

.thanks-info ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-dark);
}

.thanks-info ul li:before {
    content: "ℹ";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.thanks-testimonial {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.legal-page {
    margin-top: 120px;
    padding: 80px 20px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.legal-date {
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-page h4 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.legal-page ul {
    margin: 15px 0 15px 30px;
    color: var(--text-light);
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

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

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

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

    .footer-col {
        flex: 1 1 calc(50% - 20px);
    }

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

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

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

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

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

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

    .reason-item {
        flex: 1 1 100%;
    }

    .quick-links {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

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

    .story-intro h2 {
        font-size: 1.8rem;
    }

    .split-right h2 {
        font-size: 1.8rem;
    }

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

    .sticky-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

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

    .comparison-table {
        overflow-x: auto;
    }
}
