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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.layout-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}

.sidebar-inner {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    height: 100%;
}

.logo-area {
    margin-bottom: 3rem;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.brand-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.main-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
}

.sidebar-cta {
    margin-top: auto;
    padding-top: 2rem;
}

.cta-btn-sidebar {
    display: block;
    background: #ff6b35;
    color: white;
    text-align: center;
    padding: 0.9rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn-sidebar:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.sidebar-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-info {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.content-area {
    margin-left: 280px;
    flex: 1;
    background: #fff;
}

.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 3rem;
}

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

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-image-wrapper {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.cta-btn-primary {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-btn-secondary {
    display: inline-block;
    background: #2a5298;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.cta-btn-secondary:hover {
    background: #1e3c72;
    transform: translateY(-2px);
}

.story-section {
    padding: 4rem 3rem;
    background: #fff;
}

.story-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1.2rem;
    color: #555;
    font-size: 1.05rem;
}

.story-image {
    flex: 0 0 350px;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.problem-section {
    padding: 4rem 3rem;
    background: #f8f9fa;
}

.section-heading {
    font-size: 2.2rem;
    text-align: center;
    color: #1e3c72;
    margin-bottom: 3rem;
}

.section-heading-alt {
    font-size: 2.2rem;
    text-align: center;
    color: #1e3c72;
    margin-bottom: 2.5rem;
}

.problem-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.problem-card {
    flex: 1 1 calc(50% - 1rem);
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.problem-card h4 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.problem-card p {
    color: #666;
    line-height: 1.7;
}

.services-preview {
    padding: 4rem 3rem;
    background: white;
}

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

.service-item {
    background: #f8f9fa;
    padding: 1.8rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.service-header h4 {
    font-size: 1.3rem;
    color: #1e3c72;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b35;
}

.service-desc {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-link {
    color: #2a5298;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #ff6b35;
}

.services-cta {
    text-align: center;
}

.testimonials-section {
    padding: 4rem 3rem;
    background: #f8f9fa;
}

.testimonials-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.testimonial {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 600;
    color: #2a5298;
}

.trust-section {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
}

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

.trust-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.form-section {
    padding: 4rem 3rem;
    background: #fff;
}

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

.form-heading {
    font-size: 2.2rem;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.service-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    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: #2a5298;
}

.form-submit-btn {
    width: 100%;
    background: #ff6b35;
    color: white;
    padding: 1.1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.final-cta-section {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.final-cta-content h3 {
    font-size: 2.2rem;
    color: #1e3c72;
    margin-bottom: 1.2rem;
}

.final-cta-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 3rem 1rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #ff6b35;
}

.footer-column p {
    color: #aaa;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ff6b35;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 60, 114, 0.97);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #ff6b35;
    color: white;
}

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

.cookie-btn.reject {
    background: #666;
    color: white;
}

.cookie-btn.reject:hover {
    background: #555;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    background: #ff6b35;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.page-header {
    padding: 3rem 3rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.page-title {
    font-size: 2.8rem;
    color: #1e3c72;
    margin-bottom: 0.8rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-story {
    padding: 4rem 3rem;
    background: white;
}

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

.about-content h3 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.about-image {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.values-section {
    padding: 4rem 3rem;
    background: #f8f9fa;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card h4 {
    font-size: 1.4rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.team-section {
    padding: 4rem 3rem;
    background: white;
}

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

.team-intro p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.process-section {
    padding: 4rem 3rem;
    background: #f8f9fa;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    flex-shrink: 0;
}

.step-item h4 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 0.8rem;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

.numbers-section {
    padding: 4rem 3rem;
    background: white;
}

.numbers-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.number-box {
    flex: 1 1 calc(25% - 1.5rem);
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    padding: 2.5rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    color: white;
}

.big-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.number-desc {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-about {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.cta-about-content h3 {
    font-size: 2.2rem;
    color: #1e3c72;
    margin-bottom: 1.2rem;
}

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

.pricing-intro {
    padding: 3rem 3rem;
    background: white;
}

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

.pricing-intro-content h3 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 1.2rem;
}

.pricing-intro-content p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.services-detailed {
    padding: 3rem 3rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-card-detailed {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-card-header {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card-header h3 {
    font-size: 1.8rem;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
}

.service-card-body {
    padding: 2rem;
}

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

.service-card-body h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin: 1.5rem 0 1rem;
}

.service-checklist {
    list-style: none;
    padding-left: 0;
}

.service-checklist li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: #555;
}

.service-checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-note {
    background: #f8f9fa;
    padding: 1rem;
    border-left: 4px solid #ff6b35;
    margin-top: 1.5rem;
    color: #666;
    font-style: italic;
}

.service-card-footer {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
}

.service-cta-btn {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.warranty-section {
    padding: 4rem 3rem;
    background: white;
}

.warranty-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.warranty-item {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.warranty-item h4 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.warranty-item p {
    color: #666;
    line-height: 1.7;
}

.faq-section {
    padding: 4rem 3rem;
    background: #f8f9fa;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    padding: 1.8rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

.final-services-cta {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
}

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

.final-services-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.final-services-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info-section {
    padding: 4rem 3rem;
    background: white;
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-card {
    flex: 1 1 calc(50% - 1rem);
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #555;
    line-height: 1.7;
}

.contact-card a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-form-section {
    padding: 4rem 3rem;
    background: #f8f9fa;
}

.contact-form-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-intro h3 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.contact-form-intro p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.contact-additional {
    padding: 4rem 3rem;
    background: white;
}

.info-boxes {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.info-box {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.info-box h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.info-box p {
    color: #666;
    line-height: 1.7;
}

.map-section {
    padding: 4rem 3rem;
    background: #f8f9fa;
}

.map-placeholder {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.map-placeholder p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.map-note {
    color: #888;
    font-size: 0.95rem;
}

.contact-cta-section {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
}

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

.contact-cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.contact-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.thanks-section {
    padding: 4rem 3rem;
    background: white;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-title {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

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

.thanks-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.thanks-details p {
    color: #555;
    margin-bottom: 0.6rem;
}

.thanks-next-steps {
    margin-bottom: 2.5rem;
}

.thanks-next-steps h3 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    text-align: left;
}

.step-item-thanks {
    flex: 1;
    background: #f8f9fa;
    padding: 1.8rem;
    border-radius: 10px;
}

.step-num {
    display: inline-block;
    background: #ff6b35;
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-item-thanks p {
    color: #666;
    line-height: 1.6;
}

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

.thanks-info {
    padding: 3rem 3rem;
    background: #f8f9fa;
}

.info-card-thanks {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.info-card-thanks h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.info-card-thanks p {
    color: #666;
    line-height: 1.7;
}

.info-card-thanks a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.info-card-thanks a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 4rem 3rem;
    background: white;
}

.legal-title {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 0.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.legal-updated {
    color: #888;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.legal-content h3 {
    font-size: 1.6rem;
    color: #1e3c72;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h4 {
    font-size: 1.3rem;
    color: #2a5298;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #ff6b35;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .sidebar {
        width: 250px;
    }

    .content-area {
        margin-left: 250px;
    }

    .testimonials-wrapper {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .sidebar {
        position: static;
        width: 100%;
        height: auto;
    }

    .sidebar-inner {
        padding: 1.5rem;
    }

    .content-area {
        margin-left: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .story-wrapper {
        flex-direction: column;
    }

    .story-image {
        flex: 1;
    }

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

    .problem-card {
        flex: 1 1 100%;
    }

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

    .info-boxes {
        flex-direction: column;
    }

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

    .contact-card {
        flex: 1 1 100%;
    }

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

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

    .cta-btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

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

    .number-box {
        flex: 1 1 100%;
    }

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

    .value-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }
}