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

:root {
    --primary: #1a5f7a;
    --secondary: #159895;
    --accent: #57c5b6;
    --dark: #002b36;
    --light: #f8f9fa;
    --text: #2d3436;
    --gray: #636e72;
    --border: #dfe6e9;
    --success: #00b894;
    --warning: #fdcb6e;
    --danger: #d63031;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: #fff;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

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

ul {
    list-style-position: inside;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 43, 54, 0.98);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.btn-accept:hover {
    background: #00966d;
    transform: translateY(-2px);
}

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

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

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

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--dark);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(87, 197, 182, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(87, 197, 182, 0.5);
}

.hero-visual {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a5f7a 0%, #159895 100%);
    padding-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%231a5f7a" width="1200" height="800"/><path fill="%23159895" opacity="0.3" d="M0,400 Q300,300 600,400 T1200,400 L1200,800 L0,800 Z"/></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    color: rgba(255,255,255,0.95);
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(87, 197, 182, 0.4);
}

.content-narrow {
    max-width: 750px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.story-intro {
    background: var(--light);
    padding: 5rem 2rem;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--dark);
    font-weight: 400;
}

.question-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 2rem;
    font-style: italic;
}

.problem-amplification {
    padding: 5rem 0;
    background: white;
}

.split-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.split-image {
    flex: 1;
    min-width: 300px;
    height: 500px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 12px;
    position: relative;
}

.split-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--primary);
    border-radius: 12px;
    z-index: -1;
}

.split-text {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
}

.inline-cta {
    margin-top: 2rem;
}

.text-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-block;
    transition: transform 0.3s ease;
}

.text-link:hover {
    transform: translateX(5px);
}

.insight-reveal {
    background: var(--dark);
    color: white;
    padding: 6rem 2rem;
}

.insight-reveal .content-narrow {
    padding: 0 2rem;
}

.centered-heading {
    text-align: center;
    color: var(--accent);
    margin-bottom: 2rem;
}

.trust-building {
    padding: 5rem 2rem;
    background: var(--light);
}

.layered-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-block {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.method-explanation {
    padding: 6rem 2rem;
    background: white;
}

.alternating-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.method-step {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.method-step.reverse {
    flex-direction: row-reverse;
}

.step-content {
    flex: 1;
    min-width: 300px;
}

.step-visual {
    flex: 1;
    min-width: 300px;
    height: 350px;
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.testimonials-inline {
    padding: 6rem 2rem;
    background: var(--light);
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

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

.testimonial-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

.benefits-reveal {
    padding: 6rem 2rem;
    background: white;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-item {
    padding-left: 2rem;
    border-left: 4px solid var(--accent);
}

.benefit-item h4 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.services-pricing {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--light) 0%, white 100%);
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 4rem;
}

.pricing-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 4rem;
}

.price-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.price-card.featured {
    border-color: var(--primary);
    border-width: 3px;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.price-card h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.card-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 2rem 0;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray);
    margin-right: 0.5rem;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
}

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
}

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

.select-service {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.additional-services {
    margin-top: 5rem;
}

.additional-services h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.addon-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.addon-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.addon-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.addon-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin: 1.5rem 0;
}

.form-section {
    padding: 6rem 2rem;
    background: var(--dark);
    color: white;
}

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

.form-container h2 {
    text-align: center;
    color: var(--accent);
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.15);
}

.form-group select option {
    background: var(--dark);
    color: white;
}

.submit-btn {
    padding: 1.2rem 2rem;
    background: var(--accent);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(87, 197, 182, 0.4);
}

.urgency-block {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--danger), #e17055);
    color: white;
    text-align: center;
}

.urgency-block h2 {
    color: white;
}

.urgency-cta {
    margin-top: 2rem;
}

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

.urgent-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.final-reassurance {
    padding: 5rem 2rem;
    background: var(--light);
    text-align: center;
}

.final-reassurance h3 {
    color: var(--primary);
    font-size: 2rem;
}

.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: var(--accent);
    margin-bottom: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent);
}

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

.page-hero {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.page-hero .hero-content h1 {
    color: white;
    margin-bottom: 1rem;
}

.about-story {
    padding: 5rem 2rem;
    background: white;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-mission {
    padding: 5rem 0;
    background: var(--light);
}

.split-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    padding: 0 2rem;
}

.split-layout .split-content {
    flex: 1;
    min-width: 300px;
}

.split-image-block {
    flex: 1;
    min-width: 300px;
    height: 450px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 16px;
}

.team-section {
    padding: 6rem 2rem;
    background: white;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
}

.member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    margin: 0 auto 1.5rem;
}

.member-role {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.values-section {
    padding: 6rem 2rem;
    background: var(--light);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary);
}

.stats-section {
    padding: 6rem 2rem;
    background: var(--dark);
    color: white;
}

.stats-section h2 {
    text-align: center;
    color: var(--accent);
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.stat-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.stat-box .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-box .stat-label {
    color: rgba(255,255,255,0.7);
}

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    text-align: center;
    color: white;
}

.cta-section h2 {
    color: white;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.services-intro {
    padding: 4rem 2rem;
    background: var(--light);
    text-align: center;
}

.intro-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto;
}

.main-packages {
    padding: 5rem 2rem;
    background: white;
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 4rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 3rem;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.service-detail-card.featured-card {
    border-color: var(--primary);
    border-width: 3px;
    position: relative;
}

.popular-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-weight: 700;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-price {
    display: flex;
    align-items: baseline;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.price-currency {
    font-size: 1.2rem;
    color: var(--gray);
    margin-left: 0.5rem;
}

.service-tagline {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.service-content {
    margin-top: 2rem;
}

.service-includes {
    margin-bottom: 2rem;
}

.service-includes h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-includes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.service-fit {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-fit h4 {
    color: var(--primary);
}

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

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

.additional-services-section {
    padding: 5rem 2rem;
    background: var(--light);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.addon-services-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.addon-service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.addon-service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.addon-price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin: 1rem 0;
}

.addon-features {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.addon-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.addon-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
}

.comparison-table-section {
    padding: 5rem 2rem;
    background: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--border);
}

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

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

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.guarantee-section {
    padding: 4rem 2rem;
    background: var(--light);
    text-align: center;
}

.guarantee-section h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.services-form-section {
    padding: 6rem 2rem;
    background: var(--dark);
}

.contact-info-section {
    padding: 5rem 2rem;
    background: white;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-details h2 {
    color: var(--primary);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.contact-item a {
    color: var(--primary);
    font-weight: 600;
}

.contact-note {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

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

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: white;
    font-size: 1.2rem;
    text-align: center;
}

.faq-section {
    padding: 5rem 2rem;
    background: var(--light);
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--success), var(--secondary));
    color: white;
    padding: 8rem 2rem 5rem;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

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

.thanks-content h1 {
    color: white;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
}

.thanks-details {
    padding: 5rem 2rem;
    background: white;
}

.timeline {
    max-width: 800px;
    margin: 3rem auto 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

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

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.selected-service-info {
    margin-top: 3rem;
}

.service-confirmation {
    background: var(--light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.selected-service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.thanks-resources {
    padding: 5rem 2rem;
    background: var(--light);
}

.resource-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.resource-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

.resource-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.thanks-contact {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
}

.legal-page {
    padding: 8rem 2rem 5rem;
    background: white;
}

.legal-page h1 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.update-date {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-page h2 {
    color: var(--primary);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    color: var(--secondary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    margin-bottom: 0.75rem;
}

.legal-page .note {
    background: var(--light);
    padding: 1.5rem;
    border-left: 4px solid var(--warning);
    margin: 2rem 0;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookies-table thead {
    background: var(--light);
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

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

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

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .split-content {
        gap: 2rem;
    }

    .method-step {
        gap: 2rem;
    }

    .method-step.reverse {
        flex-direction: column;
    }

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

    .price-card.featured {
        transform: scale(1);
    }

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

    .sticky-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

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

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

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
}