/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-position: inside;
}

/* Layout Container - Sidebar Layout Archetype */
.layout-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #ffffff;
    padding: 2rem 1.5rem;
    width: 100%;
    position: relative;
}

.sidebar-inner {
    display: flex;
    flex-direction: column;
}

.logo {
    margin-bottom: 3rem;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
}

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

.nav-link {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: block;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.sidebar-cta {
    margin-bottom: 3rem;
}

.btn-sidebar {
    display: block;
    padding: 1rem;
    background-color: #3182ce;
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sidebar:hover {
    background-color: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.4);
}

.sidebar-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-footer a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.sidebar-footer a:hover {
    color: #ffffff;
}

/* Main Content */
.main-content {
    flex: 1;
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 3rem 1.5rem;
    background: linear-gradient(to bottom right, #f7fafc, #edf2f7);
}

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

.hero-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #3182ce;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.hero-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

/* Intro Section */
.intro-section {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

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

.intro-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.intro-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 150px;
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #3182ce;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #718096;
    font-weight: 500;
}

/* Problem Section */
.problem-section {
    padding: 4rem 1.5rem;
    background-color: #1a202c;
    color: #ffffff;
}

.problem-content {
    max-width: 1000px;
    margin: 0 auto;
}

.problem-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-item {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #3182ce;
}

.problem-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.problem-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.problem-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Approach Section */
.approach-section {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

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

.approach-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #3182ce;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.approach-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.approach-text p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.approach-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.approach-list li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    line-height: 1.6;
}

.inline-cta {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #3182ce;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: #2c5aa0;
    transform: translateX(4px);
}

/* Services Preview */
.services-preview {
    padding: 4rem 1.5rem;
    background: linear-gradient(to bottom, #edf2f7, #ffffff);
}

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

.services-intro h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.125rem;
    color: #4a5568;
}

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

.service-card {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

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

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

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #3182ce;
    color: #ffffff;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background-color: #3182ce;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.services-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #3182ce;
    border: 2px solid #3182ce;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3182ce;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 1.5rem;
    background-color: #f7fafc;
}

.testimonials-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 1.125rem;
    color: #2d3748;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-text::before {
    content: '"';
}

.testimonial-text::after {
    content: '"';
}

.testimonial-author {
    display: block;
    font-size: 0.875rem;
    color: #718096;
    font-weight: 600;
}

/* Trust Section */
.trust-section {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

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

.trust-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.trust-text p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-item strong {
    font-size: 1.125rem;
    color: #1a202c;
}

.trust-item span {
    color: #718096;
}

.trust-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Form Section */
.form-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.form-wrapper h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    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: #3182ce;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group a {
    color: #3182ce;
    text-decoration: underline;
}

.btn-primary {
    width: 100%;
    padding: 1rem;
    background-color: #3182ce;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 1.5rem;
    background-color: #f7fafc;
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #1a202c;
    border: 2px solid #1a202c;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #1a202c;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer */
.main-footer {
    padding: 3rem 1.5rem 1.5rem;
    background-color: #1a202c;
    color: #ffffff;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 100;
}

.sticky-btn {
    display: block;
    padding: 1rem 1.5rem;
    background-color: #3182ce;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(49, 130, 206, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #2c5aa0;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(49, 130, 206, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    font-size: 0.875rem;
    line-height: 1.6;
    text-align: center;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #3182ce;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #2c5aa0;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-reject:hover {
    border-color: #ffffff;
}

/* Page Header */
.page-header {
    padding: 3rem 1.5rem 2rem;
    background: linear-gradient(to right, #edf2f7, #f7fafc);
    text-align: center;
}

.page-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
}

/* Services Detailed */
.services-detailed {
    padding: 3rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-detail {
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
}

.featured-service {
    border: 3px solid #3182ce;
    background: linear-gradient(to bottom right, #ffffff, #f7fafc);
}

.service-detail-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-detail-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
}

.price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: #3182ce;
}

.service-description {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-includes h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.service-includes ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-includes li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    line-height: 1.6;
}

.service-duration {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 1.5rem;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3182ce;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Pricing Info */
.pricing-info {
    padding: 3rem 1.5rem;
    background-color: #f7fafc;
}

.pricing-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 2rem;
}

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

.info-box {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.info-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.info-box p {
    color: #4a5568;
    line-height: 1.6;
}

/* CTA Services */
.cta-services {
    padding: 3rem 1.5rem;
    background-color: #ffffff;
    text-align: center;
}

.cta-services h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

/* About Sections */
.about-story {
    padding: 3rem 1.5rem;
    background-color: #ffffff;
}

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

.story-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.story-text p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Philosophy Section */
.philosophy-section {
    padding: 4rem 1.5rem;
    background-color: #f7fafc;
}

.philosophy-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-card {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.philosophy-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 0.75rem;
}

.philosophy-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.team-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.team-member h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.team-role {
    display: block;
    font-size: 0.875rem;
    color: #3182ce;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #4a5568;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Values Section */
.values-section {
    padding: 4rem 1.5rem;
    background-color: #f7fafc;
}

.values-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 3rem;
}

.values-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-icon {
    font-size: 1.5rem;
    color: #3182ce;
    flex-shrink: 0;
}

.value-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.value-text p {
    color: #4a5568;
    line-height: 1.6;
}

/* Numbers Section */
.numbers-section {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.numbers-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 3rem;
}

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

.number-box {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.big-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #3182ce;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.number-label {
    display: block;
    font-size: 0.875rem;
    color: #718096;
}

/* CTA About */
.cta-about {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.cta-about h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

/* Contact Sections */
.contact-info-section {
    padding: 3rem 1.5rem;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #3182ce;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.contact-details p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #3182ce;
    font-weight: 600;
}

.contact-note {
    font-size: 0.875rem;
    color: #718096;
    margin-top: 0.75rem;
}

/* Contact Approach */
.contact-approach {
    padding: 4rem 1.5rem;
    background-color: #f7fafc;
}

.contact-approach h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #3182ce;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.faq-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 4rem 1.5rem;
    background-color: #f7fafc;
}

.map-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 2rem;
}

.map-placeholder {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder img {
    width: 100%;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
}

.map-overlay p {
    margin-bottom: 0.5rem;
}

/* CTA Contact */
.cta-contact {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
    text-align: center;
}

.cta-contact h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.cta-contact p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

/* Thanks Section */
.thanks-section {
    padding: 4rem 1.5rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

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

.thanks-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.thanks-text {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-service {
    margin: 2rem 0;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #3182ce;
}

.service-confirmation strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.service-confirmation p {
    color: #4a5568;
}

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

.thanks-next-steps h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.next-steps-list {
    padding-left: 1.5rem;
}

.next-steps-list li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.thanks-contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.thanks-contact-info p {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.thanks-contact-info a {
    color: #3182ce;
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
}

.legal-page h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 2rem;
}

.legal-page h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-page ul {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #3182ce;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.cookie-table th {
    background-color: #f7fafc;
    font-weight: 700;
    color: #1a202c;
}

.cookie-table td {
    color: #4a5568;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .layout-container {
        flex-direction: row;
    }

    .sidebar {
        width: 280px;
        position: sticky;
        top: 0;
        height: 100vh;
        overflow-y: auto;
    }

    .main-content {
        flex: 1;
    }

    .hero-section h2 {
        font-size: 3.5rem;
    }

    .intro-stats {
        flex-wrap: nowrap;
    }

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

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

    .approach-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .approach-img {
        width: 40%;
        flex-shrink: 0;
    }

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

    .service-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

    .testimonial {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .trust-content {
        flex-direction: row-reverse;
        align-items: center;
    }

    .trust-img {
        width: 45%;
        flex-shrink: 0;
    }

    .trust-points {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 1;
        min-width: 200px;
    }

    .form-row {
        flex-direction: row;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .story-content {
        flex-direction: row-reverse;
        align-items: center;
    }

    .story-img {
        width: 50%;
        flex-shrink: 0;
    }

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

    .philosophy-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

    .team-member {
        flex: 1;
        min-width: 250px;
    }

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

    .contact-card {
        flex: 1;
    }

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

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

    .info-box {
        flex: 1;
    }

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

    .cookie-content p {
        text-align: left;
        max-width: 70%;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .sidebar {
        width: 320px;
    }

    .hero-section h2 {
        font-size: 4rem;
    }

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

    .service-card {
        min-width: calc(33.333% - 1rem);
    }

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

    .testimonial {
        min-width: calc(33.333% - 1.5rem);
    }
}