/* 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.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

.nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-list a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: #2c5aa0;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.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, -7px);
}

.nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.nav.active .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
}

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

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

.nav.active .nav-list a {
    display: block;
    padding: 1rem 0;
}

/* Sections */
.section {
    padding: 4rem 0;
}

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

.section-dark {
    background-color: #2c5aa0;
    color: #fff;
}

.section-accent {
    background-color: #f0f4f8;
}

.section-cta {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: #fff;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: inherit;
}

.section-intro {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-dark .section-intro {
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

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

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

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-intro {
    font-size: 1.125rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

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

.btn-primary {
    background-color: #2c5aa0;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1e3f70;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #2c5aa0;
}

.btn-text {
    background-color: transparent;
    color: #2c5aa0;
    padding: 0.5rem 1rem;
}

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

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.section-cta .btn-primary {
    background-color: #fff;
    color: #2c5aa0;
}

.section-cta .btn-primary:hover {
    background-color: #f0f4f8;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* Content Block */
.content-block {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.content-block.reverse {
    flex-direction: column-reverse;
}

.content-text {
    flex: 1;
}

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

.content-text p {
    margin-bottom: 1.25rem;
    color: #666;
    line-height: 1.8;
}

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

.content-image svg {
    max-width: 100%;
    height: auto;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2c5aa0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #2c5aa0;
}

.step-content p {
    color: #666;
    line-height: 1.7;
}

/* Stats Grid */
.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Industries Grid */
.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-card {
    background-color: #fff;
    padding: 1.75rem;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.industry-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

.industry-card p {
    color: #666;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.testimonial-text {
    font-size: 1.125rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #2c5aa0;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.875rem;
}

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

.philosophy-content > p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

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

.value-item {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

.value-item p {
    color: #666;
    line-height: 1.7;
}

/* FAQ */
.faq {
    max-width: 900px;
    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;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #2c5aa0;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #2c5aa0;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

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

/* Tips Grid */
.tips-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.tip-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

.tip-card p {
    color: #666;
    line-height: 1.7;
}

/* CTA Content */
.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-icon {
    color: #2c5aa0;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

.feature-content p {
    color: #666;
    line-height: 1.8;
}

/* Team Grid */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.team-member-avatar {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: #2c5aa0;
}

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

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

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.3);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.timeline-year {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #2c5aa0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

/* Why Us Content */
.why-us-content {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2.5rem;
    text-align: center;
}

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

.reason-item {
    display: flex;
    gap: 1.5rem;
}

.reason-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
}

.reason-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c5aa0;
}

.reason-item p {
    color: #666;
    line-height: 1.7;
}

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
    color: #2c5aa0;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    color: #2c5aa0;
    font-weight: 700;
}

.price-from {
    font-size: 0.875rem;
    font-weight: 400;
}

.price-amount {
    font-size: 1.75rem;
}

.price-period {
    font-size: 0.875rem;
    font-weight: 400;
    color: #666;
}

/* Benefits Comparison */
.benefits-comparison {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-block {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.benefit-icon-large {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.benefit-block h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

.benefit-block p {
    color: #666;
    line-height: 1.7;
}

/* Workflow */
.workflow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.workflow-step {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.workflow-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.workflow-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

.workflow-step p {
    color: #666;
    line-height: 1.7;
}

.workflow-arrow {
    text-align: center;
    font-size: 2rem;
    color: #2c5aa0;
    display: none;
}

/* Contact Grid */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #2c5aa0;
}

.contact-content p {
    color: #666;
    line-height: 1.7;
}

.contact-content a {
    color: #2c5aa0;
    font-weight: 600;
}

.contact-content a:hover {
    text-decoration: underline;
}

.contact-map {
    background-color: #f0f4f8;
    border-radius: 8px;
    overflow: hidden;
}

/* Directions Content */
.directions-content > p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

.transport-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.transport-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

.transport-item p {
    color: #666;
    line-height: 1.7;
}

/* Visitor Info */
.visitor-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

.info-card p {
    color: #666;
    line-height: 1.7;
}

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

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

.thank-you-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

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

.next-steps {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.step-item .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
}

.step-item p {
    color: #666;
    line-height: 1.7;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Quick Links */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.quick-link-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

.quick-link-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.legal-text h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

.legal-text h4 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

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

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text ul li {
    list-style-type: disc;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-text a {
    color: #2c5aa0;
    font-weight: 600;
}

.legal-text a:hover {
    text-decoration: underline;
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    color: #999;
    font-style: italic;
}

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

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

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

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

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1.5rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    color: #666;
    line-height: 1.7;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

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

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

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-modal-header h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
}

.cookie-modal-close:hover {
    color: #333;
}

.cookie-modal-body {
    padding: 1.5rem;
}

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

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category-header h4 {
    font-size: 1.125rem;
    color: #2c5aa0;
}

.cookie-category p {
    color: #666;
    line-height: 1.7;
    font-size: 0.875rem;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav {
        display: block;
    }

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

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

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

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

    .content-block {
        flex-direction: row;
    }

    .content-block.reverse {
        flex-direction: row-reverse;
    }

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

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

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

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

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

    .testimonial {
        flex: 1 1 100%;
    }

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

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

    .features-list .feature-item {
        flex-direction: row;
    }

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

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

    .reasons-grid .reason-item {
        flex-direction: row;
    }

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

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

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

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

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

    .workflow-step {
        flex: 1;
    }

    .workflow-arrow {
        display: block;
        flex-shrink: 0;
        align-self: center;
    }

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

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

    .transport-options {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .visitor-info {
        flex-direction: row;
    }

    .info-card {
        flex: 1;
    }

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

    .quick-links {
        flex-direction: row;
    }

    .quick-link-card {
        flex: 1;
    }

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

    .footer-section {
        flex: 1;
    }

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

    .cookie-actions {
        flex-direction: row;
        flex-shrink: 0;
    }
}

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

    .benefit-card {
        flex: 1 1 calc(33.333% - 1.333rem);
    }

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

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

    .tip-card {
        flex: 1 1 calc(25% - 1.125rem);
    }

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

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

    .services-list {
        flex-direction: row;
    }

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

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

    .benefit-block {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .transport-options {
        flex-direction: row;
    }

    .transport-item {
        flex: 1;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal {
        display: none;
    }

    body {
        color: #000;
    }

    a {
        text-decoration: underline;
    }
}