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

:root {
    --primary-color: #4a90e2;
    --primary-dark: #3a7bc8;
    --secondary-color: #67b8e3;
    --accent-color: #89c4f4;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --bg-light: #f8fafb;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

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

/* Navigation */
.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    padding: 80px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}

.nav-menu.active {
    right: 0;
}

.nav-menu li a {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-bottom: 2px solid transparent;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f2f7 100%);
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
}

/* Buttons and CTAs */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-align: center;
}

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

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

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.link-cta {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.link-cta:hover {
    color: var(--primary-dark);
}

/* Card Grids - Card-Based UI Archetype */
.card-grid,
.intro-cards {
    padding: 60px 20px;
}

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

.intro-card,
.service-card,
.process-card,
.testimonial-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.intro-card:hover,
.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.card-icon img {
    width: 100%;
    height: 100%;
}

.intro-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

/* Story Section */
.story-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.story-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    border: 2px solid var(--primary-color);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header {
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-detail {
    font-size: 1rem;
    color: var(--text-light);
}

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

.service-features li {
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.select-service-btn {
    background: var(--primary-color);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

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

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

.process-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
}

.process-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.process-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
}

.process-card p {
    color: var(--text-light);
}

/* Benefits Section */
.benefits-alt {
    padding: 80px 20px;
    background: var(--bg-light);
}

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.benefit-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.testimonials-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
}

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

.testimonial-card {
    border-left: 4px solid var(--primary-color);
}

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

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

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

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Form Section */
.form-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-intro p {
    color: var(--text-light);
    line-height: 1.7;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.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: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

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

/* Final CTA */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.final-cta .cta-secondary {
    background: white;
    color: var(--primary-color);
    border: none;
}

.final-cta .cta-secondary:hover {
    background: var(--bg-light);
}

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

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

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

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

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

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

.sticky-cta-btn {
    background: var(--primary-color);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.sticky-cta-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    display: none;
}

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

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

.cookie-content p {
    text-align: center;
    line-height: 1.6;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

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

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

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

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

/* Page Hero (for inner pages) */
.page-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f2f7 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Page Specific */
.about-story {
    padding: 80px 20px;
    background: var(--bg-white);
}

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

.story-block h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.story-image-block img {
    border-radius: 12px;
}

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

.mission-card-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mission-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.mission-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.values-list li {
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

.values-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

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

.team-approach h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
}

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

.approach-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.approach-icon {
    width: 70px;
    height: 70px;
}

.approach-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
}

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

.numbers-section {
    padding: 80px 20px;
    background: var(--primary-color);
    color: white;
}

.numbers-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
}

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

.number-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.number-label {
    font-size: 1.1rem;
}

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

.philosophy-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.philosophy-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.point h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.point p {
    color: var(--text-light);
    line-height: 1.8;
}

.cta-about {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.cta-about h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Services Page Specific */
.services-detailed {
    padding: 80px 20px;
    background: var(--bg-white);
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-detail-card.featured-service {
    border: 3px solid var(--primary-color);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
}

.service-visual {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-detail-content {
    padding: 35px;
}

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

.service-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-sub {
    font-size: 1.1rem;
    color: var(--text-light);
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-includes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.service-includes li {
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 8px;
    margin-bottom: 25px;
}

.service-info span {
    color: var(--text-light);
}

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

.pricing-info h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
}

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

.pricing-info-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.pricing-info-card h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.pricing-info-card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-info-card li {
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

.pricing-info-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

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

.faq-preview h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

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

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

/* Contact Page Specific */
.contact-main {
    padding: 80px 20px;
    background: var(--bg-white);
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.contact-card h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-details a {
    color: var(--primary-color);
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 8px;
}

.service-areas {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
}

.service-areas h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.cities-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.cities-list li {
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.cities-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.area-note {
    font-size: 0.95rem;
    color: var(--text-light);
}

.quick-order-info {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.quick-order-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.quick-order-info p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.quick-link-btn {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.quick-link-btn:hover {
    background: var(--bg-light);
}

.contact-reasons {
    margin-bottom: 30px;
}

.contact-reasons h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.reasons-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reason-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
}

.reason-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.response-time {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
}

.response-time h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.response-time p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.faq-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

.faq-accordion {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    cursor: pointer;
    position: relative;
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.final-contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.final-contact-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.final-contact-cta a[href^="mailto"] {
    color: var(--primary-color);
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Thanks Page Specific */
.thanks-page {
    padding: 80px 20px;
    background: var(--bg-white);
}

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

.thanks-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.order-summary {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 50px;
    text-align: left;
}

.order-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.summary-label {
    color: var(--text-light);
    font-weight: 600;
}

.summary-value {
    color: var(--text-dark);
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 35px;
    color: var(--text-dark);
}

.steps-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: left;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.thanks-cta {
    margin-bottom: 50px;
}

.thanks-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.thanks-cta a[href^="mailto"] {
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
}

.trust-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
}

.trust-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

/* Legal Pages */
.legal-page {
    padding: 60px 20px;
    background: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-intro {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
    list-style: disc;
}

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

.legal-back {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.back-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-link:hover {
    color: var(--primary-dark);
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        flex-direction: row;
        box-shadow: none;
        background: transparent;
    }

    .hero-section {
        flex-direction: row;
        align-items: center;
        padding: 100px 20px;
    }

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

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

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

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

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

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

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

    .benefits-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 18px);
    }

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

    .testimonial-card {
        flex: 1;
    }

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

    .story-text,
    .story-image {
        flex: 1;
    }

    .story-grid {
        flex-direction: row;
        align-items: flex-start;
    }

    .story-block,
    .story-image-block {
        flex: 1;
    }

    .mission-card-layout {
        flex-direction: row;
    }

    .mission-card {
        flex: 1;
    }

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

    .approach-card {
        flex: 1;
    }

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

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

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

    .service-visual {
        width: 40%;
        height: auto;
    }

    .service-detail-content {
        width: 60%;
    }

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

    .pricing-info-card {
        flex: 1;
    }

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

    .faq-item {
        flex: 1 1 calc(50% - 15px);
    }

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

    .contact-info-side,
    .contact-form-side {
        flex: 1;
    }

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

    .reason-item {
        flex: 1 1 calc(50% - 15px);
    }

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

    .step-card {
        flex: 1;
    }

    .trust-elements {
        flex-direction: row;
    }

    .trust-item {
        flex: 1;
    }

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

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

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

    .thanks-buttons {
        flex-direction: row;
    }

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

    .cookie-content p {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

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

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

    .process-card {
        flex: 1;
    }

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

    .number-card {
        flex: 1;
    }
}