:root {
    --primary-color: #d4510f;
    --primary-dark: #a83e0c;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

a:hover {
    color: var(--primary-dark);
}

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

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

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

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

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

.nav-main {
    display: none;
}

.nav-main a {
    margin-left: 32px;
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

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

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

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

.btn-accept:hover {
    background: var(--primary-dark);
}

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

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

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-section h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-section p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

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

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 81, 15, 0.3);
}

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

.trust-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

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

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

.intro-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.intro-section p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.visual-showcase {
    padding: 0;
    background: var(--text-dark);
}

.showcase-grid {
    display: flex;
    flex-direction: column;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.showcase-large {
    min-height: 400px;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.showcase-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.showcase-caption h3 {
    font-size: 24px;
    font-weight: 700;
}

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

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-header-centered p {
    font-size: 18px;
    color: var(--text-medium);
}

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

.service-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.service-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-link {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.service-link:hover {
    background: var(--primary-dark);
}

.why-choose-us {
    padding: 80px 20px;
    background: var(--bg-white);
}

.two-col-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.col-content h2 {
    font-size: 32px;
    margin-bottom: 32px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

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

.feature-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--text-medium);
    line-height: 1.7;
}

.col-image {
    border-radius: 8px;
    overflow: hidden;
}

.col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.section-title-centered {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

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

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 16px;
}

.testimonial-author span {
    color: var(--text-medium);
    font-size: 14px;
}

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

.process-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

.step-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.step-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
}

.step h3 {
    font-size: 24px;
}

.step p {
    color: var(--text-medium);
    line-height: 1.7;
}

.cta-banner {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-content-centered {
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-content-centered p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 48px;
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

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

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

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

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.form-intro p {
    color: var(--text-medium);
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: var(--font-main);
    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);
}

.checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.btn-submit {
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

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

.sticky-cta-button {
    display: block;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(212, 81, 15, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(212, 81, 15, 0.5);
}

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

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

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
}

.content-section {
    padding: 80px 20px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.large-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
}

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

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

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

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

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

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-light);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.member-role {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

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

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

.numbers-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.number-block {
    text-align: center;
}

.big-number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.number-block p {
    font-size: 16px;
    color: var(--text-medium);
}

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

.two-col-reverse {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
}

.two-col-reverse .col-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.two-col-reverse .col-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-medium);
}

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

.certifications-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.cert-item {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.cert-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.cert-item p {
    color: var(--text-medium);
}

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

.cta-box {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    color: white;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

.cta-button-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.services-detail-section {
    padding: 60px 20px;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

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

.service-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    width: fit-content;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.service-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 32px;
}

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

.feature {
    display: flex;
    gap: 12px;
    align-items: center;
}

.feature svg {
    flex-shrink: 0;
    color: var(--success-color);
}

.feature span {
    color: var(--text-dark);
}

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

.price-label {
    font-size: 14px;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: fit-content;
}

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

.service-detail-image {
    border-radius: 8px;
    overflow: hidden;
    min-height: 300px;
    background: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.process-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-step-small {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.process-step-small h4 {
    font-size: 20px;
}

.process-step-small p {
    color: var(--text-medium);
    line-height: 1.6;
}

.cta-full {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    text-align: center;
}

.cta-full h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-full p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-medium);
    margin-bottom: 8px;
}

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

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

.contact-note {
    font-size: 14px;
    font-style: italic;
}

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

.map-section h2 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-white);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.05);
}

.map-overlay p {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-weight: 600;
}

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

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

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

.faq-item {
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.working-hours-detail {
    padding: 80px 20px;
    background: var(--bg-light);
}

.hours-box {
    max-width: 600px;
    margin: 0 auto;
}

.hours-box h2 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
}

.hours-table {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row.closed {
    opacity: 0.5;
}

.day {
    font-weight: 600;
}

.time {
    color: var(--text-medium);
}

.hours-note {
    text-align: center;
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.6;
}

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

.cta-box-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box-centered h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-box-centered p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

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

.cta-button-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

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

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    color: var(--success-color);
}

.thanks-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.thanks-service-info {
    padding: 20px;
    background: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 60px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next-steps {
    margin-bottom: 60px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 32px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

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

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
}

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

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

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

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

.thanks-contact-info {
    padding: 32px;
    background: var(--bg-white);
    border-radius: 8px;
}

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

.contact-email {
    font-size: 18px;
}

.contact-email a {
    font-weight: 600;
}

.contact-hours {
    font-size: 14px;
    color: var(--text-medium);
}

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

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-medium);
}

.legal-content ul {
    margin-bottom: 16px;
    margin-left: 24px;
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: var(--text-medium);
}

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

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

.cookie-table {
    overflow-x: auto;
    margin: 24px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.cookie-table tr:last-child td {
    border-bottom: none;
}

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

    .mobile-menu-toggle {
        display: none;
    }

    .hero-section h1 {
        font-size: 52px;
    }

    .trust-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .showcase-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .showcase-item {
        flex: 1 1 50%;
    }

    .showcase-large {
        flex: 1 1 100%;
    }

    .services-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .two-col-layout {
        flex-direction: row;
    }

    .col-content,
    .col-image {
        flex: 1;
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1 1 calc(50% - 15px);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 15px);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(33.333% - 27px);
    }

    .numbers-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .number-block {
        flex: 1 1 calc(50% - 20px);
    }

    .two-col-reverse {
        flex-direction: row;
    }

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

    .contact-card {
        flex: 1;
    }

    .process-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step-small {
        flex: 1 1 calc(50% - 12px);
    }

    .service-detail-card {
        flex-direction: row;
        align-items: center;
    }

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

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

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(25% - 30px);
    }
}

@media (min-width: 1024px) {
    .service-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .testimonial-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .process-step-small {
        flex: 1 1 calc(25% - 18px);
    }

    .number-block {
        flex: 1 1 calc(25% - 30px);
    }
}
