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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

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

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

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

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

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

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

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    padding: 30px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 10px;
    max-width: 90%;
}

.hero-text-overlay h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtext {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
}

.intro-story {
    background-color: var(--bg-light);
}

.intro-story .opening-line {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.intro-story p {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.8;
}

.emphasis-text {
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    color: var(--primary-color);
    margin-top: 30px;
}

.problem-reveal {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.split-text,
.split-image {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.problem-list li {
    padding: 15px 0 15px 30px;
    position: relative;
    font-size: 17px;
    border-bottom: 1px solid var(--border-color);
}

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

.cta-inline {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 30px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231,76,60,0.3);
}

.split-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

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

.centered-heading {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.centered-subtext {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

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

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.testimonial-flow {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: white;
}

.testimonial-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote {
    font-size: 26px;
    font-style: italic;
    line-height: 1.7;
    text-align: center;
    position: relative;
    padding: 40px 20px;
}

.testimonial-quote:before {
    content: '"';
    font-size: 80px;
    position: absolute;
    top: -10px;
    left: 0;
    opacity: 0.3;
}

.testimonial-quote cite {
    display: block;
    margin-top: 25px;
    font-size: 18px;
    font-style: normal;
    color: var(--accent-color);
}

.story-continuation {
    background-color: white;
}

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

.story-continuation strong {
    color: var(--secondary-color);
}

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

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

.trust-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 8px;
}

.trust-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.trust-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 15px;
    color: var(--text-light);
}

.visual-showcase {
    padding: 80px 20px;
    background-color: white;
}

.showcase-grid {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
    font-size: 18px;
    font-weight: 600;
}

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

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

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

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

.service-header {
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: white;
    padding: 30px 25px;
}

.service-header h3 {
    font-size: 24px;
    margin: 0;
}

.service-body {
    padding: 30px 25px;
}

.service-body p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

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

.price-reveal {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.price {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.price-note {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

.btn-select-service {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.urgency-block {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--secondary-color), #c0392b);
    color: white;
    text-align: center;
}

.urgency-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

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

.urgency-timer {
    font-size: 24px;
    font-weight: 700;
    margin-top: 20px;
}

#quota-count {
    color: var(--accent-color);
    font-size: 32px;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.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: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231,76,60,0.3);
}

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

.final-testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.testimonial-card cite {
    font-style: normal;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.btn-sticky {
    padding: 18px 35px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(231,76,60,0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(231,76,60,0.5);
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

.page-hero {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: white;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
}

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

.lead-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.about-story h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    color: var(--primary-color);
}

.about-story p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.about-story em {
    color: var(--secondary-color);
    font-weight: 600;
}

.principles-list {
    margin: 40px 0;
}

.principle-item {
    margin-bottom: 35px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 5px solid var(--secondary-color);
}

.principle-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.principle-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

.why-us-list {
    margin: 30px 0;
    padding-left: 25px;
}

.why-us-list li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.6;
}

.closing-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 40px;
    text-align: center;
}

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

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.btn-primary-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231,76,60,0.3);
}

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

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.service-includes {
    list-style: none;
    margin: 20px 0;
}

.service-includes li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-price-block {
    margin: 30px 0;
    padding: 25px;
    background-color: white;
    border-radius: 8px;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.price-amount {
    display: block;
    font-size: 38px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.service-benefits {
    padding: 80px 20px;
    background-color: white;
}

.service-benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.benefits-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 15px;
    color: var(--text-light);
}

.contact-info-section {
    padding: 60px 20px;
}

.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    flex: 1;
    min-width: 260px;
    padding: 40px 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.small-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

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

.map-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.map-intro {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.map-placeholder {
    max-width: 900px;
    margin: 0 auto;
    height: 400px;
    background-color: #d4d9dc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.map-placeholder p {
    font-size: 20px;
    color: var(--text-dark);
    margin: 0;
}

.map-address {
    font-size: 16px;
    color: var(--text-light);
}

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

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

.thanks-hero {
    padding: 100px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 8px 30px rgba(231,76,60,0.3);
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    margin: 40px 0;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.submission-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.thanks-next-steps {
    margin: 60px 0;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.step-item {
    flex: 1;
    padding: 30px 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.btn-primary {
    padding: 16px 35px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 16px 35px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-contact-info {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.thanks-contact-info p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.thanks-contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.legal-page {
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.update-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.legal-content h4 {
    font-size: 18px;
    margin: 25px 0 12px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.legal-content ul {
    margin: 20px 0 20px 25px;
}

.legal-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.legal-content strong {
    color: var(--primary-color);
}

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

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

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

.cookie-table tbody tr:nth-child(even) {
    background-color: var(--bg-light);
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
    }

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

    .hero-subtext {
        font-size: 16px;
    }

    .split-layout {
        flex-direction: column;
        gap: 30px;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        padding: 20px;
    }

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

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

    .thanks-cta {
        flex-direction: column;
        align-items: stretch;
    }

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

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .btn-sticky {
        padding: 14px 25px;
        font-size: 14px;
    }
}