/* Reset and 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.7;
    color: #2c3e50;
    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 {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container Variants */
.container-full {
    width: 100%;
    max-width: 100%;
}

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

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

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

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0;
}

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

.logo {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.nav-menu a {
    display: block;
    padding: 16px 25px;
    color: #2c3e50;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-menu a:hover {
    background: #f8f9fa;
    color: #3498db;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #2c3e50;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?w=1600');
    background-size: cover;
    background-position: center;
    margin-top: 62px;
    padding: 60px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
}

/* Page Hero */
.page-hero {
    padding: 120px 20px 70px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
    margin-top: 62px;
}

.page-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero-lead {
    font-size: 1.15rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Buttons and CTAs */
.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 38px;
    background: #ffffff;
    color: #3498db;
    border: 2px solid #3498db;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.link-arrow {
    display: inline-block;
    color: #3498db;
    font-weight: 600;
    margin-top: 12px;
    transition: transform 0.3s ease;
}

.link-arrow:after {
    content: " →";
}

.link-arrow:hover {
    transform: translateX(5px);
}

/* Section Styles - Stacked with Alternating Backgrounds */
section {
    padding: 80px 20px;
}

.bg-light {
    background: #f8f9fa;
}

.bg-dark {
    background: #2c3e50;
    color: #ffffff;
}

.bg-accent {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.section-title-light {
    color: #ffffff;
}

/* Intro Block */
.intro-block {
    padding: 90px 20px;
}

.intro-content h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

/* Visual Section */
.visual-section {
    padding: 70px 20px;
}

.image-block {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

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

.caption-text {
    text-align: center;
    margin-top: 25px;
}

.caption-text p {
    font-size: 1.05rem;
    font-style: italic;
    color: #718096;
}

/* Promise Section */
.promise-section {
    padding: 90px 20px;
}

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

.promise-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.promise-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Services Preview/Grid */
.services-preview {
    padding: 90px 20px;
}

.services-preview h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 55px;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 18px;
    opacity: 0.9;
}

.price-tag {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-top: 10px;
    margin-bottom: 15px;
}

/* Testimonial */
.testimonial-section {
    padding: 90px 20px;
    background: #f8f9fa;
}

.testimonial-large {
    border-left: 5px solid #3498db;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-large p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-large cite {
    display: block;
    font-size: 1rem;
    color: #718096;
    font-style: normal;
    font-weight: 600;
}

/* Process Timeline */
.process-section {
    padding: 90px 20px;
}

.process-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 55px;
    color: #1a1a1a;
}

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

.timeline-step {
    position: relative;
    padding-left: 70px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.timeline-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.timeline-step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Image Feature */
.image-feature {
    padding: 0;
}

.full-width-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

/* Trust Section */
.trust-section {
    padding: 90px 20px;
}

.trust-content h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    text-align: center;
}

.trust-point {
    padding: 25px;
}

.trust-stat {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 12px;
}

.trust-point p {
    font-size: 1.05rem;
    color: #4a5568;
}

/* Form Section */
.form-section {
    padding: 90px 20px;
}

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

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 45px;
    opacity: 0.95;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #ffffff;
    color: #667eea;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Final CTA */
.final-cta {
    padding: 90px 20px;
    background: #f8f9fa;
}

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

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

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #4a5568;
}

/* Story Section */
.story-section {
    padding: 90px 20px;
}

.story-content h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 22px;
}

/* Values Section */
.values-section {
    padding: 90px 20px;
}

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

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

.value-block {
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.value-block h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Team Section */
.team-section {
    padding: 90px 20px;
}

.team-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.team-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

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

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

.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.member-role {
    font-size: 1rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    max-width: 500px;
    margin: 0 auto;
}

/* Numbers Section */
.numbers-section {
    padding: 90px 20px;
}

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

.numbers-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    text-align: center;
}

.number-item {
    padding: 25px;
}

.big-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 12px;
}

.number-item p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Approach Section */
.approach-section {
    padding: 90px 20px;
}

.approach-section h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 22px;
}

/* CTA Box */
.cta-box {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Contact Page */
.contact-main {
    padding: 90px 20px;
}

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

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

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.contact-block a {
    color: #3498db;
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: #718096;
    margin-top: 8px;
}

.contact-visual {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.image-placeholder img {
    border-radius: 12px;
    width: 100%;
}

.info-box {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.info-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

/* FAQ Section */
.faq-section {
    padding: 90px 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.faq-item {
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

/* Map Section */
.map-section {
    padding: 0;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    background: #e2e8f0;
    background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Services Detail */
.services-detail {
    padding: 90px 20px;
}

.service-detail-item {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 2px solid #e2e8f0;
}

.service-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-icon-large {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.service-detail-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.price-display {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 20px;
}

.service-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 30px;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-list {
    list-style: none;
    margin-bottom: 20px;
}

.service-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a5568;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-note {
    font-size: 0.95rem;
    color: #718096;
    font-style: italic;
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-detail-image {
    border-radius: 12px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

/* Pricing Note Section */
.pricing-note-section {
    padding: 70px 20px;
}

.pricing-note-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.pricing-note-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

/* Thanks Page */
.thanks-section {
    padding: 120px 20px 90px;
    text-align: center;
    margin-top: 62px;
}

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

.thanks-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    font-size: 3rem;
    line-height: 80px;
    margin-bottom: 30px;
}

.thanks-section h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 35px;
}

.thanks-info {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 1.05rem;
    color: #2c3e50;
}

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

.thanks-next h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.thanks-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

.thanks-contact {
    font-size: 1rem;
    color: #718096;
}

.thanks-contact a {
    color: #3498db;
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    padding: 120px 20px 90px;
    margin-top: 62px;
}

.legal-page h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 12px;
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 1rem;
}

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

.legal-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
}

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

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

.footer-col h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -3px 20px rgba(0, 0, 0, 0.2);
    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 {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

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

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

.btn-cookie {
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: #27ae60;
    color: #ffffff;
}

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

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

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

/* Responsive Design */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        box-shadow: none;
    }

    .nav-menu li {
        border-bottom: none;
    }

    .nav-menu a {
        padding: 8px 18px;
    }

    .nav-toggle {
        display: none;
    }

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

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

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

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

    .promise-item {
        flex: 1;
        min-width: 280px;
    }

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

    .service-card {
        flex: 1;
        min-width: 300px;
    }

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

    .timeline-step {
        flex: 1;
        min-width: 250px;
    }

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

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

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

    .value-block {
        flex: 1;
        min-width: 280px;
    }

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

    .team-member {
        flex: 0 0 calc(33.333% - 30px);
        min-width: 250px;
    }

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

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

    .contact-grid {
        flex-direction: row;
        gap: 60px;
    }

    .contact-info {
        flex: 1;
    }

    .contact-visual {
        flex: 1;
    }

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

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

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

    .service-detail-image {
        flex: 0 0 45%;
    }

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

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

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

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

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

@media (min-width: 1024px) {
    section {
        padding: 100px 20px;
    }

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

    .services-grid {
        display: flex;
        flex-wrap: wrap;
    }

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