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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7e;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

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

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

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

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

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

.sticky-btn {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.hero-scroll {
    margin-top: 80px;
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero-overlay h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.5;
    opacity: 0.95;
}

.story-intro {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.narrow-content {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.9;
}

.opening-line {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.narrow-content p {
    margin-bottom: 1.5rem;
}

.problem-amplify {
    padding: 6rem 5%;
    background: var(--bg-light);
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.split-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.stat-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

.insight-reveal {
    padding: 6rem 5%;
    background: white;
}

.centered-block {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.centered-block h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.lead-text {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

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

.insight-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: left;
}

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

.insight-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.story-section {
    padding: 6rem 5%;
    background: linear-gradient(to bottom, white 0%, var(--bg-light) 100%);
}

.story-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.inline-cta {
    margin-top: 3rem;
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

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

.trust-signals {
    padding: 6rem 5%;
    background: var(--bg-white);
}

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

.trust-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonial-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

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

.method-reveal {
    padding: 6rem 5%;
    background: var(--primary-color);
    color: white;
}

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

.method-content {
    flex: 2;
}

.method-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

.phase-block {
    margin-bottom: 2.5rem;
}

.phase-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.phase-block p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.method-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.floating-element {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.highlight-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.benefits-cascade {
    padding: 6rem 5%;
    background: white;
}

.benefit-flow {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-flow h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

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

.benefit-icon {
    font-size: 2.5rem;
    color: var(--success-color);
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.benefit-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.service-pricing {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.pricing-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-note {
    font-size: 1.2rem;
    color: var(--text-light);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 350px;
    max-width: 420px;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

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

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.service-features span {
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

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

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

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

.urgency-block {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
    color: white;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.urgency-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 2rem;
    color: var(--accent-color);
}

.final-cta-section {
    padding: 6rem 5%;
    background: var(--bg-white);
}

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

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

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

.main-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.guarantee-section {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid var(--accent-color);
    text-align: center;
}

.guarantee-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.guarantee-box p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 5% 2rem 5%;
}

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

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

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

.footer-column p {
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-column a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 82, 0.98);
    color: white;
    padding: 1.5rem 5%;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-accept:hover {
    background: #c49a2e;
}

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

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

.page-hero {
    margin-top: 80px;
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-overview {
    padding: 5rem 5%;
    background: white;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.service-detailed-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

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

.service-detail-card.premium-service {
    background: linear-gradient(to bottom, #1a3a52 0%, #2c5f7e 100%);
    color: white;
}

.popular-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.service-detail-header {
    background: white;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-service .service-detail-header {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

.premium-service .service-detail-header h2 {
    color: white;
}

.service-price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.service-detail-body {
    padding: 2.5rem;
}

.premium-service .service-detail-body h3 {
    color: var(--accent-color);
}

.service-detail-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail-body h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-detail-body ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-body ul li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.7;
}

.service-detail-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-cta {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 4rem 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

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

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

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

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

.values-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.value-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.team-approach {
    padding: 5rem 5%;
    background: white;
}

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

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.approach-details {
    margin-top: 3rem;
}

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

.approach-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.approach-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.expertise-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.expertise-content {
    max-width: 1100px;
    margin: 0 auto;
}

.expertise-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.expertise-content > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.expertise-item {
    flex: 1;
    min-width: 320px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.expertise-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

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

.expertise-item p {
    font-size: 1rem;
    line-height: 1.6;
}

.numbers-section {
    padding: 5rem 5%;
    background: var(--primary-color);
    color: white;
}

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

.numbers-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.stat-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.compliance-section {
    padding: 5rem 5%;
    background: white;
}

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

.compliance-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.compliance-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.compliance-list {
    margin: 2rem 0;
    padding-left: 2rem;
}

.compliance-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.compliance-note {
    font-style: italic;
    color: var(--text-light);
}

.cta-about {
    padding: 5rem 5%;
    background: var(--bg-light);
}

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

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

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

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

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.8;
}

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

.contact-block a:hover {
    color: var(--accent-color);
}

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-box {
    background: var(--bg-light);
    padding: 4rem 3rem;
    border-radius: 15px;
    text-align: center;
    width: 100%;
}

.map-text {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.quick-contact {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.quick-contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.quick-contact-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.quick-contact-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.faq-contact {
    padding: 5rem 5%;
    background: white;
}

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

.faq-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

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

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

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.legal-page {
    margin-top: 80px;
    padding: 5rem 5%;
    background: white;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.6rem;
}

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

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

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

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

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

.cookie-table th {
    font-weight: 700;
    color: var(--primary-color);
}

.thanks-hero {
    margin-top: 80px;
    padding: 6rem 5%;
    background: linear-gradient(to bottom, var(--bg-light) 0%, white 100%);
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.service-confirmation {
    margin: 2rem 0;
}

.selected-service-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.selected-service-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

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

.next-steps {
    margin: 4rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

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

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

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

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

    .split-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .testimonial-row {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

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

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

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

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

    .hero-overlay h1 {
        font-size: 1.8rem;
    }

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

    .main-form {
        padding: 2rem 1.5rem;
    }
}
