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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

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

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

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

ul {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

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

.main-nav {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

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

.sticky-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 126, 34, 0.5);
}

.hero-section {
    height: 600px;
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)),
                url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    max-width: 1000px;
    padding: 40px;
}

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

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

.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

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

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 40px;
}

.container-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

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

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

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

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

.inline-image {
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.problem-section {
    background: var(--bg-white);
}

.problem-section h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.problem-section p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 20px;
}

.insight-section {
    background: var(--primary-color);
    color: white;
}

.insight-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 15px;
}

.insight-card h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.insight-intro {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.insights-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-item {
    flex: 1;
    min-width: 280px;
}

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

.insight-item p {
    line-height: 1.8;
    opacity: 0.9;
}

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

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

.story-step {
    margin-bottom: 50px;
    padding-left: 80px;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
}

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

.story-step p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.cta-inline {
    text-align: center;
    margin-top: 50px;
}

.trust-section {
    background: var(--bg-white);
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.benefits-section {
    background: var(--bg-light);
}

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

.benefits-layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-block {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.benefit-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.benefit-block img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.benefit-block h3 {
    padding: 25px 25px 10px;
    font-size: 22px;
    color: var(--primary-color);
}

.benefit-block p {
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.6;
}

.services-preview {
    background: var(--bg-white);
}

.services-preview h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--secondary-color), #d35400);
    color: white;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card.featured h3 {
    color: white;
}

.service-card p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
}

.service-card.featured .price {
    color: white;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--success-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.btn-service {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #1a252f;
}

.service-card.featured .btn-service {
    background: white;
    color: var(--secondary-color);
}

.service-card.featured .btn-service:hover {
    background: var(--bg-light);
}

.urgency-section {
    background: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.urgency-box {
    text-align: center;
}

.urgency-box h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.urgency-box p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.urgency-highlight {
    font-size: 22px;
    font-weight: 700;
    color: #e67e22;
    margin-top: 30px;
}

.form-section {
    background: var(--bg-light);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.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 select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-privacy {
    margin-bottom: 25px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.form-privacy input[type="checkbox"] {
    margin-top: 4px;
}

.form-privacy label {
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

.final-cta {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

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

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

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

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

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

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.6;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section a {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

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

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

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.about-content {
    background: var(--bg-white);
}

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

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

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

.about-image {
    margin: 60px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-philosophy {
    margin-bottom: 60px;
}

.about-philosophy h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.philosophy-list {
    margin-top: 25px;
}

.philosophy-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
}

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

.stats-section {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin: 60px 0;
    padding: 50px;
    background: var(--bg-light);
    border-radius: 15px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 18px;
    color: var(--text-dark);
}

.team-section {
    margin-bottom: 60px;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.team-section > p {
    font-size: 19px;
    margin-bottom: 40px;
}

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

.team-member {
    flex: 1;
    min-width: 250px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.role {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

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

.values-section {
    margin-bottom: 60px;
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.values-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

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

.cta-section {
    text-align: center;
    padding: 50px;
    background: var(--bg-light);
    border-radius: 15px;
}

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.services-intro {
    background: var(--bg-white);
}

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

.services-intro p {
    font-size: 19px;
    text-align: center;
    line-height: 1.8;
}

.services-detailed {
    background: var(--bg-white);
}

.service-detail {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

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

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

.service-detail-content > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.service-detail-content ul {
    margin-bottom: 25px;
}

.service-detail-content li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

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

.service-timing {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
}

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

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

.service-detail-image img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.services-faq {
    background: var(--bg-light);
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary-color);
}

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

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

.services-cta {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

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

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

.contact-section {
    background: var(--bg-white);
}

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

.contact-info,
.contact-map {
    flex: 1;
    min-width: 350px;
}

.contact-info h2,
.contact-map h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-info > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 35px;
}

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

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

.contact-item a {
    color: var(--accent-color);
    text-decoration: underline;
}

.map-placeholder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.9);
    color: white;
    padding: 20px;
    text-align: center;
}

.directions h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.directions p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-cta {
    background: var(--bg-light);
    text-align: center;
}

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

.contact-cta p {
    font-size: 18px;
    margin-bottom: 25px;
}

.faq-contact {
    background: var(--bg-white);
}

.faq-contact h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-contact > p {
    font-size: 18px;
    margin-bottom: 35px;
}

.thanks-section {
    background: var(--bg-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

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

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

.thanks-main {
    font-size: 22px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.thanks-details {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: left;
}

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

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
}

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

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

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

.thanks-info {
    background: #e8f5e9;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid var(--success-color);
}

.thanks-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

.thanks-explore {
    margin-bottom: 40px;
}

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

.thanks-explore > p {
    font-size: 18px;
    margin-bottom: 25px;
}

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

.thanks-social {
    margin-bottom: 40px;
}

.thanks-social p {
    font-size: 18px;
    margin-bottom: 20px;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    padding: 12px 30px;
    background: var(--accent-color);
    color: white;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.thanks-back {
    margin-top: 20px;
}

.legal-page {
    background: var(--bg-white);
}

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

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

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

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

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-content li {
    list-style: disc;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 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(--primary-color);
}

.cookie-table td {
    font-size: 15px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

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

    .container,
    .container-narrow,
    .container-wide {
        padding: 50px 20px;
    }

    .container-split {
        flex-direction: column;
        padding: 50px 20px;
    }

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

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

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

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

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

    .stats-section {
        flex-direction: column;
    }

    .services-cards,
    .testimonials,
    .benefits-layout {
        flex-direction: column;
    }

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

    .page-hero h1 {
        font-size: 36px;
    }

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

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

    .contact-form {
        padding: 25px;
    }
}

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

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

    .btn-primary,
    .btn-large {
        padding: 14px 25px;
        font-size: 16px;
    }

    h2 {
        font-size: 28px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}