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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #1a3a4d;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

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

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

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

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

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

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

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

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

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

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

.hero-block {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 80px 20px;
}

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

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 126, 34, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 14px 36px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.hero-visual {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-section {
    background: var(--bg-white);
    padding: 80px 20px;
}

.intro-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.intro-wrapper h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

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

.stats-block {
    background: var(--bg-light);
    padding: 60px 20px;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    margin-bottom: 8px;
}

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

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

.problem-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.problem-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

.problem-visual {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.solution-intro {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 70px 20px;
}

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

.solution-wrapper h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.solution-wrapper p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.services-header {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.services-header h2 {
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.services-header p {
    font-size: 18px;
    color: var(--text-light);
}

.services-list {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 32px;
    flex: 1 1 350px;
    max-width: 400px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-card > p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.service-features span {
    font-size: 14px;
    color: var(--text-dark);
    padding-left: 20px;
    position: relative;
}

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

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

.service-select {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonials-section {
    background: var(--bg-white);
    padding: 80px 20px;
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

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

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

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

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

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

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

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    flex: 1 1 300px;
    max-width: 400px;
}

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

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

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

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

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

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

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

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1 1 280px;
    margin-bottom: 24px;
}

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

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

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

.submit-btn {
    width: 100%;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.final-cta {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 70px 20px;
}

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

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

.final-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.main-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 20px 20px;
}

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

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

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

.footer-col a {
    display: block;
    color: #bdc3c7;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

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

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

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

.sticky-cta-btn {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #d35400;
    transform: scale(1.05);
}

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

.page-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.95;
}

.story-section {
    background: var(--bg-white);
    padding: 80px 20px;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

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

.story-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

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

.values-wrapper h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-item {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    flex: 1 1 280px;
    max-width: 350px;
    box-shadow: var(--shadow);
}

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

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

.team-section {
    background: var(--bg-white);
    padding: 80px 20px;
}

.team-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.team-wrapper h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.team-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.team-member h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.team-role {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

.approach-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.step {
    flex: 1 1 240px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 16px;
    display: block;
}

.step h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.cta-about {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 70px 20px;
}

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

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

.cta-about-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.services-intro {
    background: var(--bg-white);
    padding: 60px 20px;
}

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

.services-intro-content h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
}

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

.services-detailed {
    background: var(--bg-light);
    padding: 60px 20px;
}

.services-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
}

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

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

.service-detail-header h2 {
    font-size: 28px;
    color: var(--text-dark);
}

.service-detail-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

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

.service-includes {
    margin-bottom: 24px;
}

.service-includes h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

.service-includes li {
    font-size: 15px;
    color: var(--text-dark);
    padding-left: 28px;
    margin-bottom: 10px;
    position: relative;
    line-height: 1.6;
}

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

.service-duration {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 24px;
}

.comparison-section {
    background: var(--bg-white);
    padding: 70px 20px;
}

.comparison-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-wrapper h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.comparison-guide {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.guide-item {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    flex: 1 1 280px;
    max-width: 350px;
}

.guide-item h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.guide-item p {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.services-cta {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 70px 20px;
}

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

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

.services-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-main {
    background: var(--bg-white);
    padding: 60px 20px;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.contact-item {
    flex: 1 1 250px;
    max-width: 350px;
}

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

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

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

.contact-note {
    margin-top: 40px;
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.contact-note p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

.response-info {
    background: var(--bg-light);
    padding: 70px 20px;
}

.response-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.response-wrapper h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.response-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.response-item {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    flex: 1 1 280px;
    max-width: 380px;
    box-shadow: var(--shadow);
}

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

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

.map-section {
    background: var(--bg-white);
    padding: 70px 20px;
}

.map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.map-wrapper h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.map-placeholder {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.8);
    color: var(--bg-white);
    padding: 16px 24px;
    border-radius: 8px;
}

.map-overlay p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.location-info {
    max-width: 800px;
    margin: 0 auto;
}

.location-info h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.location-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.faq-contact {
    background: var(--bg-light);
    padding: 70px 20px;
}

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

.faq-wrapper h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: var(--bg-white);
    padding: 28px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.thanks-section {
    background: var(--bg-white);
    padding: 80px 20px;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-icon svg {
    stroke: var(--success-color);
    margin: 0 auto;
}

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

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

.service-confirmation {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.thanks-next-steps {
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

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

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

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

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

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-info {
    background: var(--bg-light);
    padding: 70px 20px;
}

.thanks-info-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.thanks-info-wrapper h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.info-item {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    flex: 1 1 280px;
    max-width: 380px;
    box-shadow: var(--shadow);
}

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

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

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

.legal-page {
    background: var(--bg-white);
    padding: 60px 20px;
}

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

.legal-container h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

.legal-container h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-container h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 24px;
    margin-bottom: 12px;
}

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

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

.legal-container ul,
.legal-container ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-container li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

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

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

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

.cookie-table td {
    font-size: 15px;
    color: var(--text-light);
}

.cookie-controls {
    margin-top: 40px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
}

.cookie-controls p {
    margin-bottom: 16px;
}

#resetCookieConsent {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#resetCookieConsent:hover {
    background: #d35400;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .problem-content {
        flex-direction: row;
    }

    .problem-text,
    .problem-visual {
        flex: 1;
    }

    .story-content {
        flex-direction: row;
    }

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

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .nav-links {
        gap: 16px;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

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