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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #ddd;
    --success-color: #27ae60;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

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

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

.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    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: bold;
    color: var(--primary-color);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

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

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

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

.sticky-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

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

.hero-funnel {
    background: linear-gradient(135deg, rgba(44,62,80,0.95), rgba(231,76,60,0.9)),
                url('https://images.unsplash.com/photo-1460353581641-37baddab0fa2?w=1600') center/cover;
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
}

.hero-overlay {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-narrow h1 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-lead {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 18px 45px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}

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

.story-intro h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.emphasis {
    font-size: 22px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-top: 30px;
}

.problem-amplify {
    padding: 80px 20px;
}

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

.split-text {
    flex: 1;
}

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

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

.problem-list {
    margin: 25px 0;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
}

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

.highlight-text {
    font-size: 20px;
    font-weight: bold;
    color: var(--success-color);
    margin-top: 25px;
}

.split-image {
    flex: 1;
}

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

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

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

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

.insight-box {
    background-color: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
}

.big-quote {
    font-size: 26px;
    font-style: italic;
    line-height: 1.6;
}

.trust-building {
    padding: 80px 20px;
}

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

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

.trust-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.testimonial-item {
    background-color: white;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
}

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

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
}

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

.showcase-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.showcase-item {
    flex: 1;
    min-width: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.showcase-item.large {
    flex: 2;
    min-width: 500px;
}

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

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

.showcase-overlay {
    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;
}

.showcase-overlay h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

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

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

.benefit-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--accent-color);
    opacity: 0.3;
    min-width: 80px;
}

.benefit-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-block {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-content-box {
    text-align: center;
    color: white;
}

.cta-content-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content-box p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-large {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 20px 50px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-note {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

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

.services-pricing h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

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

.pricing-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

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

.pricing-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    min-height: 50px;
}

.price {
    font-size: 36px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.features-list {
    margin-bottom: 30px;
}

.features-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: var(--text-light);
}

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

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

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

.urgency-section {
    padding: 60px 20px;
}

.urgency-box {
    background-color: #fff3cd;
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 35px;
    text-align: center;
}

.urgency-box h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.urgency-box p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.urgency-highlight {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 20px;
}

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

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

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

.service-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

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

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

.form-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

.form-note a {
    color: var(--accent-color);
    text-decoration: underline;
}

.final-cta {
    padding: 80px 20px;
    text-align: center;
}

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

.final-cta p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.cta-secondary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 18px 45px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}

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

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

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

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

.footer-column p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

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

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
}

.footer-column ul li a:hover {
    color: white;
    text-decoration: underline;
}

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

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

.cookie-banner.show {
    display: block;
}

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

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

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

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

.btn-cookie {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 20px;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.about-content,
.services-detailed,
.contact-info,
.contact-content {
    padding: 80px 20px;
}

.about-intro {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 22px;
    color: var(--text-light);
    line-height: 1.7;
}

.story-section,
.values-section,
.team-section,
.mission-section,
.process-section {
    margin-bottom: 60px;
}

.story-section h2,
.values-section h2,
.team-section h2,
.mission-section h2,
.process-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-section p,
.mission-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-image {
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.values-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

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

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

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

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

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 10px;
}

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

.process-steps {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

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

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

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

.cta-about {
    text-align: center;
    background-color: var(--bg-light);
    padding: 50px 30px;
    border-radius: 12px;
    margin-top: 60px;
}

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

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

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

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

.service-detail {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-content {
    flex: 1;
    position: relative;
}

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

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.service-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

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

.service-features {
    margin-bottom: 25px;
}

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

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

.service-image {
    flex: 1;
    max-width: 500px;
}

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

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

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

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

.guarantee-section h2,
.faq-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.guarantee-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.guarantee-item {
    flex: 1;
    min-width: 250px;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

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

.faq-item {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

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

.cta-services,
.cta-contact {
    padding: 60px 20px;
    text-align: center;
}

.cta-services h2,
.cta-contact h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.cta-button-large {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 18px 50px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

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

.contact-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    background-color: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

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

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

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

.contact-note {
    font-size: 14px;
    color: var(--accent-color);
    margin-top: 10px;
}

.contact-methods {
    margin-top: 50px;
}

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

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

.method-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.email-display {
    font-size: 20px;
    margin-top: 15px;
}

.email-display a {
    color: var(--accent-color);
    font-weight: bold;
}

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

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

.map-placeholder {
    background-color: white;
    padding: 60px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.map-placeholder p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.contact-faq {
    padding: 60px 20px;
}

.contact-faq h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.faq-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.faq-grid .faq-item {
    flex: 1;
    min-width: 250px;
}

.thanks-section {
    padding: 100px 20px;
    text-align: center;
    min-height: 60vh;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

.thanks-details p {
    font-size: 18px;
    color: var(--text-dark);
}

.thanks-info {
    margin: 50px 0;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.next-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 180px;
    max-width: 200px;
}

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

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

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.thanks-note {
    margin-top: 40px;
    color: var(--text-light);
}

.thanks-note p {
    margin-bottom: 8px;
}

.thanks-note a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.legal-updated {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.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 p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-content ul li {
    list-style: disc;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

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

    .hero-content-narrow h1 {
        font-size: 32px;
    }

    .hero-lead {
        font-size: 18px;
    }

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

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .showcase-item.large {
        min-width: 100%;
    }

    .benefit-item {
        flex-direction: column;
    }

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

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

    .btn-cookie {
        width: 100%;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card.featured {
        transform: none;
    }

    .next-steps {
        flex-direction: column;
        align-items: center;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}
