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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #666;
}

ul {
    list-style: none;
}

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

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

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Navigation */
.nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav.active {
    display: block;
}

.nav ul {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

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

.nav ul li:last-child {
    border-bottom: none;
}

.nav ul li a {
    display: block;
    padding: 0.875rem 20px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.nav ul li a:hover,
.nav ul li a.active {
    background-color: #f5f5f5;
    color: #000;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #e8e8e8 0%, #d8d8d8 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-primary {
    background-color: #1a1a1a;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #333;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #585858;
    border: 2px solid #585858;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Sections */
section {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    color: #666;
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Philosophy */
.philosophy {
    background-color: #fafafa;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* Values */
.values h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

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

.value-icon {
    margin-bottom: 1.25rem;
}

.value-card h3 {
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #666;
    margin-bottom: 0;
}

/* Story */
.story {
    background-color: #ffffff;
}

.story-layout {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Services Highlight */
.services-highlight {
    background-color: #fafafa;
}

.services-highlight h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.service-highlight-card h3 {
    margin-bottom: 1rem;
}

.service-highlight-card p {
    color: #666;
    margin-bottom: 0;
}

/* Stats */
.stats {
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: #ccc;
}

/* Featured Service */
.featured-service {
    background-color: #f5f5f5;
}

.featured-content {
    max-width: 800px;
    margin: 0 auto;
}

.featured-text h2 {
    margin-bottom: 1.5rem;
}

.featured-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* Testimonials */
.testimonials {
    background-color: #ffffff;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.testimonial-card {
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #1a1a1a;
}

.testimonial-text {
    font-size: 1.0625rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: #333;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0;
}

/* Process */
.process {
    background-color: #fafafa;
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.step-number {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

.process-step p {
    color: #666;
    margin-bottom: 0;
}

/* Trust Indicators */
.trust-indicators {
    background-color: #ffffff;
}

.trust-indicators h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.trust-item {
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
}

.trust-item h3 {
    margin-bottom: 0.75rem;
}

.trust-item p {
    color: #666;
    margin-bottom: 0;
}

/* Knowledge */
.knowledge {
    background-color: #f5f5f5;
}

.knowledge h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

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

.knowledge-item h3 {
    margin-bottom: 1rem;
}

.knowledge-item p {
    color: #666;
    margin-bottom: 1rem;
}

.knowledge-item p:last-child {
    margin-bottom: 0;
}

/* FAQ */
.faq {
    background-color: #ffffff;
}

.faq h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: #1a1a1a;
}

.faq-question:hover {
    color: #555;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    color: #ffffff;
    text-align: center;
    padding: 4rem 0;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

/* Footer */
.footer {
    background-color: #0a0a0a;
    color: #ccc;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.footer-section p {
    color: #999;
    margin-bottom: 0;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section ul li a {
    color: #999;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #222;
    color: #777;
}

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

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

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

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-content h2 {
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-option p {
    color: #666;
    font-size: 0.9375rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
    margin-left: 1.75rem;
}

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

/* About Page */
.about-story {
    background-color: #ffffff;
}

.content-block {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    margin-bottom: 1.5rem;
}

.content-block p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.milestones {
    margin-top: 2rem;
}

.milestone-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.milestone-item:last-child {
    border-bottom: none;
}

.milestone-year {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
}

.milestone-content h3 {
    margin-bottom: 0.75rem;
}

.milestone-content p {
    color: #666;
    margin-bottom: 0;
}

/* Team */
.team {
    background-color: #fafafa;
}

.team h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.0625rem;
}

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

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

.team-member h3 {
    margin-bottom: 0.25rem;
}

.team-role {
    color: #666;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.team-member p:last-child {
    margin-bottom: 0;
    color: #666;
    line-height: 1.7;
}

/* Expertise */
.expertise {
    background-color: #ffffff;
}

.expertise h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.expertise-item {
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
}

.expertise-item h3 {
    margin-bottom: 0.75rem;
}

.expertise-item p {
    color: #666;
    margin-bottom: 0;
}

/* Values Detailed */
.values-detailed {
    background-color: #f5f5f5;
}

.values-detailed h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.value-detailed {
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.value-detailed:last-child {
    margin-bottom: 0;
}

.value-detailed h3 {
    margin-bottom: 1rem;
}

.value-detailed p {
    color: #666;
    line-height: 1.8;
}

/* Achievements */
.achievements {
    background-color: #ffffff;
}

.achievements h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.achievements-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.achievements-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
    line-height: 1.7;
}

.achievements-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.25rem;
}

.achievements-list li:last-child {
    border-bottom: none;
}

/* Commitment */
.commitment {
    background-color: #fafafa;
}

.commitment h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.commitment-text {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #666;
}

.commitment-text:last-child {
    margin-bottom: 0;
}

/* Services Page */
.services-intro {
    background-color: #fafafa;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

.services-list {
    background-color: #ffffff;
}

.services-list h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.service-item {
    max-width: 900px;
    margin: 0 auto 3rem;
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.service-header h3 {
    margin-bottom: 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-description p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-description p:last-child {
    margin-bottom: 0;
}

/* Service Benefits */
.service-benefits {
    background-color: #f5f5f5;
}

.service-benefits h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.benefit-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.benefit-item h3 {
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: #666;
    margin-bottom: 0;
}

/* Process Overview */
.process-overview {
    background-color: #ffffff;
}

.process-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-simple {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-simple-step {
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
}

.process-simple-number {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-simple-step h3 {
    margin-bottom: 0.75rem;
}

.process-simple-step p {
    color: #666;
    margin-bottom: 0;
}

/* Contact Page */
.contact-info {
    background-color: #ffffff;
}

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

.contact-card {
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #666;
    font-weight: 600;
}

.contact-detail p {
    margin-bottom: 0;
    line-height: 1.7;
}

.contact-detail a {
    color: #1a1a1a;
    text-decoration: underline;
}

.contact-detail a:hover {
    color: #666;
}

/* About Contact */
.about-contact {
    background-color: #f5f5f5;
}

.about-contact h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.about-contact-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.25rem;
}

.about-contact-content p:last-child {
    margin-bottom: 0;
}

/* Company Info Section */
.company-info-section {
    background-color: #ffffff;
}

.company-info-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.company-info-item {
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
}

.company-info-item h3 {
    margin-bottom: 1rem;
}

.company-info-item p {
    color: #666;
    margin-bottom: 0.5rem;
}

.company-info-item p:last-child {
    margin-bottom: 0;
}

/* Visiting Info */
.visiting-info {
    background-color: #f5f5f5;
}

.visiting-info h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.info-block h3 {
    margin-bottom: 1rem;
}

.info-block p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.info-block p:last-child {
    margin-bottom: 0;
}

/* Thank You Page */
.thank-you-section {
    padding: 5rem 0;
    text-align: center;
}

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

.thank-you-content h1 {
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.25rem;
}

.thank-you-content p {
    color: #666;
    margin-bottom: 2rem;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Next Steps */
.next-steps {
    background-color: #fafafa;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

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

.step-card .step-number {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card h3 {
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #666;
    margin-bottom: 0;
}

/* Legal Content */
.legal-content {
    background-color: #ffffff;
}

.legal-section {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e0e0e0;
}

.legal-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

.cookie-table thead {
    background-color: #f5f5f5;
}

.cookie-table th {
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #666;
}

/* Tablet Styles */
@media (min-width: 768px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.75rem;
    }

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

    .mobile-menu-toggle {
        display: none;
    }

    .nav {
        display: block;
        position: static;
        box-shadow: none;
        border-top: none;
    }

    .nav ul {
        flex-direction: row;
        gap: 2rem;
        padding: 0;
    }

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

    .nav ul li a {
        padding: 0.5rem 0;
        background-color: transparent;
    }

    .nav ul li a:hover {
        background-color: transparent;
    }

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

    .value-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

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

    .stat-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

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

    .trust-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .footer-section {
        flex: 1;
    }

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

    .cookie-buttons {
        flex-wrap: nowrap;
    }

    .milestone-item {
        flex-direction: row;
        gap: 2rem;
    }

    .milestone-year {
        min-width: 100px;
    }

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

    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .expertise-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

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

    .process-simple-step {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .contact-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .info-blocks {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-block {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .step-card {
        flex: 1 1 calc(33.333% - 1.334rem);
    }

    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero {
        padding: 6rem 0;
    }

    .value-card {
        flex: 1 1 calc(33.333% - 1.334rem);
    }

    .service-highlight-card {
        flex: 1 1 calc(33.333% - 1.334rem);
    }

    .stat-item {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .testimonial-card {
        flex: 1 1 calc(33.333% - 1.334rem);
    }

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

    .process-step {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .trust-item {
        flex: 1 1 calc(50% - 1rem);
    }
}