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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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 {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004499;
}

ul {
    list-style-position: inside;
}

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

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

.nav-container {
    padding: 0 20px;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    list-style: none;
}

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

.nav-menu li {
    margin: 10px 0;
}

.nav-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #f0f6ff;
    color: #0066cc;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

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

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

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

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

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f6ff 0%, #e6f0ff 100%);
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-lead {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.hero-visual {
    display: none;
}

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

.btn-primary {
    background-color: #0066cc;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0052a3;
    color: #fff;
}

.btn-secondary {
    background-color: #fff;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-secondary:hover {
    background-color: #0066cc;
    color: #fff;
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 40px;
}

.section-intro h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-intro p,
.section-intro-text {
    font-size: 1.05rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
}

h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

/* Philosophy Section */
.philosophy-section {
    background-color: #f9fafb;
}

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

.philosophy-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.philosophy-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.philosophy-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

/* Services Highlight */
.services-flex {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.service-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
}

.service-item h3 {
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-item p {
    color: #555;
    line-height: 1.6;
}

/* Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
}

.statistics-section h2 {
    color: #fff;
    text-align: center;
}

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

.stat-box {
    flex: 1 1 calc(50% - 20px);
    min-width: 150px;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

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

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
}

/* Benefits Section */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    background: #f9fafb;
    padding: 25px;
    border-radius: 8px;
}

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

.benefit-icon img {
    width: 40px;
    height: 40px;
}

.benefit-text h3 {
    color: #1a1a1a;
    margin-bottom: 10px;
}

.benefit-text p {
    color: #555;
    line-height: 1.6;
}

/* Process Section */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    position: relative;
    padding: 25px;
    background: #f9fafb;
    border-radius: 8px;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 25px;
    top: 25px;
    width: 40px;
    height: 40px;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-step h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

.process-step p {
    color: #555;
    line-height: 1.6;
}

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

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: #1a1a1a;
    font-size: 1rem;
}

.testimonial-author span {
    color: #777;
    font-size: 0.9rem;
}

/* Industries Section */
.industries-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.industry-box {
    flex: 1 1 100%;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.industry-box:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}

.industry-box h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: background-color 0.3s ease;
}

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

.faq-icon {
    font-size: 1.5rem;
    color: #0066cc;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 15px;
}

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

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 0 20px;
}

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-col p {
    color: #ccc;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

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

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

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

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

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

.cookie-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h3 {
    color: #1a1a1a;
    margin-bottom: 20px;
}

.cookie-option {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 6px;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}

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

.cookie-option p {
    font-size: 0.9rem;
    color: #666;
    margin-top: 8px;
    margin-left: 30px;
}

.cookie-modal-actions {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f0f6ff 0%, #e6f0ff 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.page-lead {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.legal-date {
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
}

/* Legal Content */
.legal-content-section {
    padding: 60px 0;
}

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

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

.legal-text h3 {
    font-size: 1.2rem;
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-text ul {
    margin: 15px 0 15px 20px;
    color: #555;
}

.legal-text ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-text a {
    color: #0066cc;
    text-decoration: underline;
}

/* About Page */
.story-section {
    background-color: #f9fafb;
}

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

.story-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-visual {
    display: none;
}

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

.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.value-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.value-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.team-section {
    background-color: #f9fafb;
}

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

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

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.member-role {
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.experience-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.expertise-item {
    background: #f9fafb;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.expertise-item h3 {
    color: #0066cc;
    margin-bottom: 12px;
}

.expertise-item p {
    color: #555;
    line-height: 1.7;
}

.milestones-section {
    background-color: #f9fafb;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 20px;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.timeline-content {
    flex: 1;
    padding-top: 10px;
}

.timeline-content h3 {
    color: #1a1a1a;
    margin-bottom: 10px;
}

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

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.approach-block {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.approach-block h3 {
    color: #0066cc;
    margin-bottom: 12px;
}

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

.trust-section {
    background-color: #f9fafb;
}

.countries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.country-tag {
    background: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.95rem;
    color: #333;
    border: 1px solid #e0e0e0;
}

/* Services Page */
.services-list-section {
    padding: 60px 0;
}

.service-detailed {
    margin-bottom: 40px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #f9fafb;
}

.service-header img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.service-header h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-intro {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.service-body {
    padding: 30px;
}

.service-body p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-pricing {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
    border-radius: 8px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
}

.price-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.service-benefits-section {
    background-color: #f9fafb;
}

.benefits-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.benefit-point {
    flex: 1 1 100%;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.benefit-point img {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.benefit-point h3 {
    color: #0066cc;
    margin-bottom: 12px;
}

.benefit-point p {
    color: #555;
    line-height: 1.6;
}

.process-comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-stage {
    background: #f9fafb;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    padding-left: 80px;
}

.stage-number {
    position: absolute;
    left: 25px;
    top: 25px;
    width: 40px;
    height: 40px;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-stage h3 {
    color: #1a1a1a;
    margin-bottom: 10px;
}

.process-stage p {
    color: #555;
    line-height: 1.6;
}

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

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

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-card img {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.contact-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.contact-card p {
    color: #555;
    line-height: 1.7;
}

.contact-card a {
    color: #0066cc;
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
}

.about-office-section,
.directions-section,
.company-info-section,
.languages-section,
.office-description-section,
.contact-tips-section {
    padding: 60px 0;
}

.office-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.direction-item {
    background: #f9fafb;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
}

.direction-item img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.direction-item h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

.direction-item p {
    color: #555;
    line-height: 1.7;
}

.company-info-section {
    background-color: #f9fafb;
}

.company-details {
    max-width: 700px;
    margin: 0 auto;
}

.company-detail-row {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.detail-value {
    color: #555;
}

.languages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.language-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.language-tag img {
    width: 30px;
    height: 20px;
}

.language-tag span {
    font-weight: 600;
    color: #333;
}

.office-reasons {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reason-item {
    background: #f9fafb;
    padding: 25px;
    border-radius: 8px;
}

.reason-item h3 {
    color: #0066cc;
    margin-bottom: 12px;
}

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

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tip-item {
    display: flex;
    gap: 20px;
    background: #f9fafb;
    padding: 25px;
    border-radius: 8px;
}

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

.tip-content h3 {
    color: #1a1a1a;
    margin-bottom: 10px;
}

.tip-content p {
    color: #555;
    line-height: 1.7;
}

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

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

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

.thank-you-section h1 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.thank-you-lead {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.next-steps-section {
    background-color: #f9fafb;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    color: #1a1a1a;
    margin-bottom: 12px;
}

.step-card p {
    color: #555;
    line-height: 1.7;
}

.helpful-links-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.helpful-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.helpful-link-card:hover {
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.2);
    transform: translateY(-3px);
}

.helpful-link-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.helpful-link-card h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

.helpful-link-card p {
    color: #555;
    line-height: 1.6;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        box-shadow: none;
        padding: 0;
        background: transparent;
    }

    .nav-menu li {
        margin: 0 5px;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: row;
    }

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

    .philosophy-card {
        flex: 1 1 calc(33.333% - 20px);
    }

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

    .service-item {
        flex: 1 1 calc(50% - 15px);
    }

    .stat-box {
        flex: 1 1 calc(25% - 20px);
    }

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

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

    .industry-box {
        flex: 1 1 calc(50% - 10px);
    }

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

    .footer-col {
        flex: 1 1 calc(50% - 15px);
    }

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

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

    .cookie-modal-actions {
        flex-direction: row;
    }

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

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

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

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

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

    .contact-card {
        flex: 1 1 calc(33.333% - 20px);
    }

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

    .direction-item {
        flex: 1 1 calc(50% - 15px);
    }

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

    .detail-label {
        margin-bottom: 0;
    }

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

    .step-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .helpful-links-grid {
        flex-direction: row;
    }

    .helpful-link-card {
        flex: 1 1 calc(33.333% - 20px);
    }

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

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

    .benefit-point {
        flex: 1 1 calc(50% - 15px);
    }
}

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

    .hero .container {
        display: flex;
        align-items: center;
        gap: 60px;
    }

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

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

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-visual {
        display: block;
        flex: 1;
    }

    .philosophy-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .service-item {
        flex: 1 1 calc(33.333% - 20px);
    }

    .testimonial-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .industry-box {
        flex: 1 1 calc(33.333% - 15px);
    }

    .footer-col {
        flex: 1 1 calc(25% - 15px);
    }

    .value-card {
        flex: 1 1 calc(25% - 20px);
    }

    .team-member {
        flex: 1 1 calc(33.333% - 20px);
    }

    .story-section .container {
        display: flex;
        align-items: center;
        gap: 60px;
    }

    .story-content {
        flex: 1;
    }

    .story-visual {
        display: block;
        flex: 1;
    }

    .benefit-point {
        flex: 1 1 calc(25% - 20px);
    }

    .direction-item {
        flex: 1 1 calc(50% - 15px);
    }
}

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

    body {
        font-size: 12pt;
        color: #000;
    }

    a {
        text-decoration: underline;
        color: #000;
    }
}