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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0ea5e9;
    --dark-bg: #1f2937;
    --darker-bg: #111827;
    --light-bg: #f9fafb;
    --text-dark: #111827;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
}

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

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

a:hover {
    color: var(--primary-dark);
}

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

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

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Navigation */
.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

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

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-dark);
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.btn-reject:hover {
    background: var(--white);
    color: var(--dark-bg);
}

/* Hero Section */
.hero-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* Section Styles */
section {
    padding: 80px 20px;
}

.dark-bg {
    background: var(--dark-bg);
    color: var(--white);
}

.light-bg {
    background: var(--light-bg);
}

section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.dark-bg p,
.dark-bg h2,
.dark-bg h3 {
    color: var(--white);
}

.dark-bg .text-light {
    color: rgba(255, 255, 255, 0.8);
}

/* Problem Section */
.problem-section {
    text-align: center;
}

/* Solution Section */
.solution-section .content-block {
    flex: 1;
}

.solution-section .image-block {
    flex: 1;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 18px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 20px;
}

/* Trust Section */
.trust-section {
    text-align: center;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

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

.service-card p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0;
}

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

.service-features li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
}

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

/* Buttons */
.cta-primary,
.cta-secondary,
.btn-select-service,
.btn-submit,
.btn-primary,
.btn-secondary,
.cta-primary-large {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.cta-primary,
.btn-primary,
.btn-select-service,
.btn-submit {
    background: var(--primary-color);
    color: var(--white);
}

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

.cta-primary-large {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 50px;
    font-size: 18px;
}

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

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

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

.btn-select-service {
    width: 100%;
    margin-top: 20px;
}

/* Form Styles */
.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 18px;
}

.section-intro,
.form-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-light);
}

/* Why Choose Us */
.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    padding: 30px;
    background: var(--darker-bg);
    border-radius: 10px;
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
}

.why-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Process Section */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

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

.step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

/* Final CTA */
.final-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.final-cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.guarantee-text {
    margin-top: 20px;
    font-size: 16px;
    opacity: 0.9;
}

/* Footer */
.main-footer {
    background: var(--darker-bg);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--white);
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    padding: 15px 20px;
    box-shadow: var(--shadow-lg);
    z-index: 90;
    display: none;
}

.sticky-cta.active {
    display: block;
}

.sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sticky-content span {
    color: var(--white);
    font-weight: 600;
}

.btn-sticky {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.header-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

/* About Page - Mission Section */
.mission-section .container-split {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.content-block {
    flex: 1;
}

.image-block {
    flex: 1;
}

.image-block img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

/* Team Section */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    flex: 1 1 calc(25% - 22.5px);
    min-width: 220px;
    text-align: center;
}

.member-image {
    margin-bottom: 20px;
}

.member-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.team-member p {
    font-size: 14px;
    color: var(--text-light);
}

/* Values Section */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    padding: 30px;
    background: var(--darker-bg);
    border-radius: 10px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Achievements */
.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.achievement-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px;
}

.achievement-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.achievement-item p {
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    text-align: center;
}

/* Services Page */
.services-overview-section {
    padding: 60px 20px;
}

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

.service-detail-section {
    padding: 80px 20px;
}

.service-detail-section .container-split {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
}

.service-detail-section.reverse .container-split {
    flex-direction: row-reverse;
}

.price-tag {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0;
}

.service-description {
    font-size: 18px;
    margin-bottom: 30px;
}

.included-list {
    list-style: none;
    margin: 20px 0;
}

.included-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
}

.included-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 20px;
}

/* Guarantee Section */
.guarantee-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.guarantee-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    padding: 30px;
    background: var(--darker-bg);
    border-radius: 10px;
}

.guarantee-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
}

.guarantee-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.contact-card p {
    color: var(--text-dark);
    font-size: 16px;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
}

/* Map Section */
.map-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.map-placeholder {
    flex: 1.5;
    min-width: 300px;
}

.map-placeholder img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.map-directions h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Office Section */
.office-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* FAQ Section */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

/* Thanks Page */
.thanks-section {
    padding: 100px 20px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.next-steps {
    margin: 60px 0;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.important-info {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    border-left: 4px solid var(--primary-color);
}

.important-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.additional-info-section {
    padding: 60px 20px;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.testimonials-compact-section {
    padding: 60px 20px;
}

.service-confirmation {
    margin: 40px 0;
}

.service-selected {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--success-color);
}

/* Legal Pages */
.legal-page {
    padding: 60px 20px;
    line-height: 1.8;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-page p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 30px;
    color: var(--text-dark);
}

.legal-page li {
    margin-bottom: 10px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--light-bg);
    font-weight: 600;
}

.cookie-settings {
    margin: 40px 0;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
    text-align: center;
}

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

.back-link a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

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

    .nav-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    section h2 {
        font-size: 28px;
    }

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

    .service-detail-section .container-split,
    .service-detail-section.reverse .container-split,
    .mission-section .container-split {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

    .page-header h1 {
        font-size: 32px;
    }

    .stats-grid,
    .testimonials-grid,
    .services-grid,
    .why-grid,
    .values-grid,
    .achievements-grid,
    .guarantee-grid,
    .contact-grid,
    .team-grid,
    .office-features,
    .info-grid {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .price,
    .price-tag {
        font-size: 32px;
    }

    .stat-number,
    .achievement-number {
        font-size: 36px;
    }
}