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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.hidden {
    display: none;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d94e28;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #d94e28;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d94e28;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    font-size: 1.8rem;
    color: #444;
}

.hero-intro {
    position: relative;
    height: 90vh;
    min-height: 600px;
    margin-top: 70px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 78, 40, 0.7) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 3rem;
}

.hero-text-block {
    max-width: 650px;
    color: #ffffff;
    margin-left: 5%;
}

.hero-text-block h1 {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

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

.story-hook {
    padding: 5rem 2rem;
    background: #f9f7f4;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.narrow-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.emphasis-text {
    font-size: 1.35rem;
    font-weight: 600;
    color: #d94e28;
    margin-top: 2.5rem;
    font-style: italic;
}

.cta-inline-block {
    padding: 3rem 2rem;
    background: #ffffff;
    text-align: center;
}

.cta-btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary {
    background: #d94e28;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(217, 78, 40, 0.3);
}

.cta-primary:hover {
    background: #c23d1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 78, 40, 0.4);
}

.cta-accent {
    background: #2a2a2a;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-accent:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.cta-large {
    font-size: 1.2rem;
    padding: 1.3rem 3.5rem;
}

.problem-amplify {
    padding: 6rem 2rem;
    background: #ffffff;
}

.split-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
    font-weight: 700;
}

.split-text p {
    font-size: 1.12rem;
    margin-bottom: 1.3rem;
    color: #444;
    line-height: 1.8;
}

.split-image {
    flex: 1;
}

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

.insight-reveal {
    padding: 6rem 2rem;
    background: linear-gradient(165deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #ffffff;
}

.centered-insight {
    max-width: 1200px;
    margin: 0 auto;
}

.centered-insight h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.insight-cards {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f5a623;
}

.insight-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

.trust-element {
    padding: 5rem 2rem;
    background: #f4f1ed;
}

.testimonial-flow {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    color: #333;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -10px;
    left: 20px;
    color: #d94e28;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: #d94e28;
    font-size: 0.95rem;
}

.cta-sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 42, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    animation: slideUp 0.5s ease forwards 2s;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.benefits-detailed {
    padding: 6rem 2rem;
    background: #ffffff;
}

.benefits-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 300px;
}

.benefit-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.benefit-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.services-preview {
    padding: 6rem 2rem;
    background: #fafafa;
}

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

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.services-lead {
    font-size: 1.2rem;
    color: #555;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card.featured {
    border: 2px solid #d94e28;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #d94e28;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-details ul {
    margin-bottom: 2rem;
}

.service-details li {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.price-reveal {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f9f7f4;
    border-radius: 8px;
    text-align: center;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #d94e28;
}

.select-service {
    width: 100%;
    padding: 1rem 2rem;
    background: #2a2a2a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #d94e28;
    transform: translateY(-2px);
}

.urgency-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #d94e28 0%, #c23d1a 100%);
}

.urgency-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.urgency-box h3 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.urgency-box p {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.95;
}

.form-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.form-container h2 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-form {
    background: #f9f9f9;
    padding: 3rem 2.5rem;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    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: #d94e28;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: #d94e28;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #c23d1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 78, 40, 0.3);
}

.final-cta {
    padding: 6rem 2rem;
    background: #2a2a2a;
    color: #ffffff;
}

.final-message {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.final-message h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-message p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #f5a623;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: #f5a623;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-content p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #f5a623;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #d94e28;
    color: #ffffff;
}

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

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

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

.page-hero {
    margin-top: 70px;
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #d94e28 0%, #c23d1a 100%);
    color: #ffffff;
    text-align: center;
}

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

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.services-full {
    padding: 4rem 2rem;
    background: #fafafa;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-full {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card-full img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-card-content {
    padding: 2.5rem;
    position: relative;
}

.service-card-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-card-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #2a2a2a;
    font-weight: 600;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: #f9f7f4;
    border-radius: 8px;
}

.price-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d94e28;
}

.select-service-btn {
    width: 100%;
    padding: 1.1rem 2rem;
    background: #2a2a2a;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background: #d94e28;
    transform: translateY(-2px);
}

.services-cta {
    padding: 4rem 2rem;
    background: #ffffff;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: #f9f7f4;
    border-radius: 12px;
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.about-hero {
    margin-top: 70px;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #ffffff;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.story-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.story-image {
    flex: 1;
}

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

.values-section {
    padding: 5rem 2rem;
    background: #f9f7f4;
}

.values-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

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

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #d94e28;
    font-weight: 700;
}

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

.team-section {
    padding: 5rem 2rem;
    background: #ffffff;
    text-align: center;
}

.team-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.team-intro {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.team-stats {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #d94e28;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

.commitment-section {
    padding: 5rem 2rem;
    background: #f9f7f4;
}

.commitment-box {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.commitment-box h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
}

.commitment-list {
    margin-bottom: 2rem;
}

.commitment-list li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.commitment-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.3rem;
}

.commitment-note {
    font-size: 1.15rem;
    font-style: italic;
    color: #d94e28;
    text-align: center;
    font-weight: 600;
}

.about-cta {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.cta-content h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-secondary {
    background: transparent;
    color: #d94e28;
    border: 2px solid #d94e28;
}

.cta-secondary:hover {
    background: #d94e28;
    color: #ffffff;
}

.contact-hero {
    margin-top: 70px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #d94e28 0%, #c23d1a 100%);
    color: #ffffff;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.contact-main {
    padding: 5rem 2rem;
    background: #fafafa;
}

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

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

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #d94e28;
    font-weight: 600;
}

.info-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.info-block a {
    color: #d94e28;
    text-decoration: underline;
}

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

.contact-map h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(217, 78, 40, 0.9);
    padding: 1.5rem;
    color: #ffffff;
}

.map-overlay p {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-faq {
    padding: 5rem 2rem;
    background: #ffffff;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background: #f9f7f4;
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #d94e28;
    font-weight: 700;
}

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

.legal-page {
    margin-top: 70px;
    padding: 4rem 2rem;
    background: #fafafa;
    min-height: 70vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.updated {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem;
    color: #2a2a2a;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #444;
    font-weight: 600;
}

.legal-container p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.legal-container li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.7;
    list-style: disc;
}

.legal-container a {
    color: #d94e28;
    text-decoration: underline;
}

.legal-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f9f7f4;
    border-left: 4px solid #d94e28;
    font-style: italic;
    color: #666;
}

.thanks-page {
    margin-top: 70px;
    padding: 5rem 2rem;
    background: #fafafa;
    min-height: 70vh;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: #4caf50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
}

.thanks-container h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.order-summary {
    background: #f9f7f4;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.order-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
    font-weight: 700;
}

.selected-service {
    font-size: 1.1rem;
    color: #d94e28;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    margin-bottom: 2.5rem;
}

.next-steps h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #2a2a2a;
    font-weight: 700;
}

.next-steps ul {
    margin-left: 1.5rem;
}

.next-steps li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.7;
    list-style: disc;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #d94e28;
    color: #ffffff;
}

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

.btn-secondary {
    background: transparent;
    color: #d94e28;
    border: 2px solid #d94e28;
}

.btn-secondary:hover {
    background: #d94e28;
    color: #ffffff;
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-menu a {
        padding: 1rem 2rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-text-block h1 {
        font-size: 2.8rem;
    }

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

    .split-layout {
        flex-direction: column;
        gap: 2.5rem;
    }

    .story-container {
        flex-direction: column;
        gap: 2.5rem;
    }

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

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

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

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

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

    .team-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

    .cta-buttons {
        flex-direction: column;
    }

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

    .service-card-full {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .hero-text-block h1 {
        font-size: 2.2rem;
    }

    .narrow-content h2,
    .services-intro h2 {
        font-size: 2rem;
    }

    .centered-insight h2 {
        font-size: 2.2rem;
    }

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

    .about-hero-content h1 {
        font-size: 2.4rem;
    }

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