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

:root {
    --primary-color: #d4632a;
    --secondary-color: #2a5d4d;
    --accent-color: #f5a623;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --transition: all 0.3s ease;
}

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: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

ul {
    list-style: none;
}

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

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 500px;
}

/* Page Hero */
.page-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1e4739 100%);
    color: white;
    text-align: center;
}

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

.page-hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: #b8541f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 99, 42, 0.3);
}

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

.btn-secondary:hover {
    background-color: #1e4739;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 93, 77, 0.3);
}

.btn-text {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-text:hover {
    background-color: var(--primary-color);
    color: white;
}

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

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

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

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Philosophy Section */
.philosophy {
    background-color: var(--bg-light);
}

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

.philosophy-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* Process Steps */
.process {
    background-color: var(--bg-light);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

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

/* Benefits */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

/* Statistics */
.stats {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1e4739 100%);
    color: white;
}

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

.stat-item {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 200px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

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

/* Testimonials */
.testimonials {
    background-color: var(--bg-light);
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.testimonial-author strong {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Knowledge Grid */
.knowledge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.knowledge-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.knowledge-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

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

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

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

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

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.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: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b8541f 100%);
    color: white;
    text-align: center;
}

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

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

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.7;
}

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

.footer-section a {
    color: #b0b0b0;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

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

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

.modal-content {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: left;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option p {
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* About Page */
.story,
.approach,
.mission {
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 2rem;
}

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

.content-block p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Values */
.values {
    background-color: var(--bg-light);
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.value-card img {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

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

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

.team-member {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-light);
    text-align: left;
}

/* Timeline */
.milestones {
    background-color: var(--bg-light);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 100px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-year {
    position: absolute;
    left: -100px;
    top: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -46px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 4px solid var(--bg-light);
}

.timeline-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

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

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

.industry-item {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 250px;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.industry-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    text-align: center;
    padding: 2rem;
}

.trust-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.trust-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

/* Mission */
.mission-content {
    text-align: center;
}

.mission-statement {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mission-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Page */
.services-list {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-detail:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.service-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.service-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-light);
    font-size: 0.9375rem;
    flex-wrap: wrap;
}

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

.benefit-box {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.benefit-box img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.benefit-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

/* Service Comparison */
.comparison-table {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-row {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.comparison-level {
    flex: 0 0 200px;
    font-weight: 700;
    color: var(--primary-color);
}

.comparison-courses {
    flex: 1;
    color: var(--text-light);
}

/* Process Detail */
.process-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.process-block {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.process-block h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

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

/* Contact Page */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

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

/* Location & Directions */
.about-location,
.directions {
    max-width: 900px;
    margin: 0 auto;
}

.location-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.direction-option {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.direction-option h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.direction-option p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

/* Company Info */
.company-details {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.company-details p {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

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

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

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

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

.thank-you-text {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.thank-you-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
}

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

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

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

.legal-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-dark);
    text-align: left;
}

.legal-content h3 {
    font-size: 1.375rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

.legal-content ul li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--bg-white);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
    }

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

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

    .page-hero h1 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 1.75rem;
    }

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

    .timeline {
        padding-left: 40px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-year {
        left: -40px;
        font-size: 1rem;
    }

    .timeline-item::before {
        left: 14px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price {
        font-size: 1.5rem;
    }
}

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

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    .service-card,
    .process-step,
    .value-card,
    .testimonial-card,
    .knowledge-card {
        min-width: 100%;
    }
}