/* 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;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

ul {
    list-style: none;
}

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

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

/* Header and Navigation */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a5f7a;
}

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #1a5f7a;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a5f7a 0%, #2c7a9a 100%);
    color: #ffffff;
    padding: 80px 0;
}

.hero-content {
    max-width: 800px;
}

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

.hero-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.page-hero {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a5f7a;
}

.hero-subtitle {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

/* Sections */
section {
    padding: 80px 0;
}

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

.section-dark {
    background-color: #f8f9fa;
}

.section-title-center {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a5f7a;
}

/* Content Blocks */
.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a5f7a;
}

.content-block p {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.8;
}

/* Feature Grid */
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a5f7a;
}

.feature-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Split Content */
.split-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a5f7a;
}

.split-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.split-visual {
    flex: 1;
}

.benefit-list {
    list-style: none;
    margin-top: 20px;
}

.benefit-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
}

/* Statistics */
.stats-section {
    background-color: #1a5f7a;
    color: #ffffff;
}

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

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    opacity: 0.9;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #1a5f7a;
}

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

.process-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a5f7a;
}

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

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #1a5f7a;
}

/* Philosophy and Values */
.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 40px;
    color: #ffffff;
    line-height: 1.7;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 1 1 calc(50% - 15px);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffffff;
}

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

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

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

.faq-item {
    background-color: #ffffff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #1a5f7a;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.3s;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Services */
.services-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.services-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a5f7a;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid #1a5f7a;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a5f7a;
}

.service-card p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #1a5f7a;
    margin-top: 15px;
}

/* Benefits */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-item {
    flex: 1 1 calc(50% - 15px);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffffff;
}

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

/* Process Detail */
.process-detail-section {
    background-color: #ffffff;
}

.process-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 17px;
    color: #5a6c7d;
}

.process-detailed {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.process-phase {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.phase-number {
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.phase-header h3 {
    font-size: 22px;
    color: #1a5f7a;
}

.process-phase p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 10px;
}

.phase-duration {
    font-weight: 600;
    color: #1a5f7a;
    margin-top: 10px;
}

/* Comparison Table */
.comparison-section {
    background-color: #f8f9fa;
}

.comparison-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 17px;
    color: #5a6c7d;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comparison-row {
    display: flex;
}

.comparison-row:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}

.comparison-cell {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.comparison-cell:first-child {
    text-align: left;
    flex: 2;
}

.comparison-header {
    background-color: #1a5f7a;
    color: #ffffff;
    font-weight: 600;
}

/* Team */
.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 17px;
    color: #5a6c7d;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member {
    flex: 1 1 calc(50% - 15px);
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a5f7a;
}

.role {
    display: block;
    font-weight: 600;
    color: #5a6c7d;
    margin-bottom: 15px;
}

.team-member p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Timeline */
.milestones-section {
    background-color: #f8f9fa;
}

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

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: #1a5f7a;
    min-width: 100px;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a5f7a;
}

.timeline-content p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Mission and Approach */
.mission-content,
.approach-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-intro,
.approach-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 40px;
    color: #5a6c7d;
    line-height: 1.7;
}

.mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.mission-card {
    flex: 1 1 calc(50% - 15px);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
}

.mission-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffffff;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-block {
    flex: 1 1 calc(50% - 15px);
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.approach-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a5f7a;
}

.approach-block p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Clients */
.clients-content {
    max-width: 1000px;
    margin: 0 auto;
}

.clients-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.client-types {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.client-type {
    flex: 1 1 calc(50% - 15px);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
}

.client-type h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffffff;
}

.client-type p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Values Detail */
.values-detail-section {
    background-color: #ffffff;
}

.values-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-detail-item {
    flex: 1 1 calc(50% - 15px);
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.value-detail-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a5f7a;
}

.value-detail-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Contact */
.contact-grid {
    display: flex;
    gap: 50px;
}

.contact-info,
.contact-content {
    flex: 1;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a5f7a;
}

.contact-block p {
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-block a {
    color: #1a5f7a;
    text-decoration: underline;
}

.contact-note {
    font-style: italic;
    color: #8b95a1;
    margin-top: 10px;
}

.contact-content h2,
.contact-content h3 {
    color: #1a5f7a;
    margin-bottom: 15px;
}

.contact-content p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Expectations */
.expectations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.expectation-item {
    flex: 1 1 calc(50% - 15px);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
}

.expectation-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffffff;
}

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

/* Location */
.location-content {
    max-width: 1000px;
    margin: 0 auto;
}

.location-content > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.location-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.location-detail {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.location-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a5f7a;
}

.location-detail p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

.company-details {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.company-details p {
    margin-bottom: 12px;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-note {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    font-style: italic;
    color: #8b95a1;
}

/* Thank You */
.thank-you-section {
    padding: 100px 0;
    text-align: center;
}

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.thank-you-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a5f7a;
}

.thank-you-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #5a6c7d;
}

.thank-you-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Legal Pages */
.legal-page {
    background-color: #ffffff;
    padding: 60px 0;
}

.legal-page .container {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a5f7a;
}

.legal-intro {
    font-size: 18px;
    margin-bottom: 40px;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a5f7a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    margin-bottom: 15px;
    color: #5a6c7d;
    line-height: 1.8;
}

.legal-page ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    margin-bottom: 8px;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-page a {
    color: #1a5f7a;
    text-decoration: underline;
}

.legal-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    font-style: italic;
    color: #8b95a1;
}

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

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a5f7a;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a5f7a 0%, #2c7a9a 100%);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p {
    opacity: 0.9;
    line-height: 1.6;
}

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

.footer-col a {
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.cookie-buttons button {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #1a5f7a;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #145068;
}

.btn-settings {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-settings:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-decline {
    background-color: transparent;
    color: #ffffff;
}

.btn-decline:hover {
    text-decoration: underline;
}

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

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

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

.modal-content h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a5f7a;
}

.cookie-option {
    margin-bottom: 25px;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.cookie-option input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

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

.cookie-option p {
    margin-left: 32px;
    color: #5a6c7d;
    font-size: 14px;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-save {
    flex: 1;
    padding: 12px;
    background-color: #1a5f7a;
    color: #ffffff;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-save:hover {
    background-color: #145068;
}

.btn-close {
    padding: 12px 24px;
    background-color: #e5e7eb;
    color: #2c3e50;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-close:hover {
    background-color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
    }

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

    .menu-toggle {
        display: flex;
    }

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

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

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

    .hero h1 {
        font-size: 36px;
    }

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

    .section-title-center {
        font-size: 28px;
    }

    .feature-card,
    .service-card,
    .testimonial-card,
    .team-member,
    .value-item,
    .benefit-item,
    .mission-card,
    .approach-block,
    .client-type,
    .value-detail-item,
    .expectation-item,
    .location-detail {
        flex: 1 1 100%;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        width: 100%;
    }

    .cookie-buttons button {
        flex: 1;
    }

    .comparison-row {
        flex-direction: column;
    }

    .comparison-cell {
        border-bottom: 1px solid #e5e7eb;
    }

    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }

    .thank-you-links {
        flex-direction: column;
    }
}

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

    section {
        padding: 50px 0;
    }

    .stats-grid {
        gap: 30px;
    }

    .stat-item {
        flex: 1 1 100%;
    }
}