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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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;
}

/* Navigation */
.main-nav {
    background-color: #1a365d;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-links a {
    color: #e0e7ff;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #60a5fa;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 5rem 1.5rem;
    color: #ffffff;
}

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

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

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #e0e7ff;
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.hero-visual {
    max-width: 1200px;
    margin: 2rem auto 0;
}

.hero-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    background-color: #f59e0b;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3b82f6;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #3b82f6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #3b82f6;
    color: #ffffff;
}

/* Section Containers */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-inner-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Trust Indicators */
.trust-indicators {
    background-color: #f8fafc;
    padding: 3rem 1.5rem;
}

.trust-indicators .section-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.95rem;
    color: #64748b;
    max-width: 200px;
}

/* Problem Section */
.problem-section {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

.problem-section h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 3rem;
}

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

.problem-card {
    background-color: #fef3c7;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.problem-card h3 {
    font-size: 1.4rem;
    color: #92400e;
    margin-bottom: 1rem;
}

.problem-card p {
    color: #78350f;
    line-height: 1.6;
}

/* Solution Intro */
.solution-intro {
    background-color: #1e293b;
    color: #ffffff;
    padding: 5rem 1.5rem;
    text-align: center;
}

.solution-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.solution-intro p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

/* Services Preview - Stacked Sections */
.services-preview {
    padding: 6rem 1.5rem;
    background-color: #f8fafc;
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1e293b;
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.service-block.reverse {
    background-color: #eff6ff;
}

.service-text h3 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.service-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

.price-tag {
    display: inline-block;
    background-color: #dcfce7;
    color: #166534;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1.3rem;
    font-weight: 700;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #1e3a8a;
    padding: 5rem 1.5rem;
    color: #ffffff;
}

.testimonial {
    background-color: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 12px;
    border-left: 5px solid #60a5fa;
}

.testimonial p {
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial cite {
    display: block;
    font-style: normal;
    color: #93c5fd;
    font-size: 1rem;
}

/* Process Section */
.process-section {
    padding: 6rem 1.5rem;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1e293b;
}

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

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: #3b82f6;
    flex-shrink: 0;
}

.step-item h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.step-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Why Us Section */
.why-us-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(to bottom, #eff6ff, #dbeafe);
}

.why-us-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

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

.why-card h3 {
    font-size: 1.4rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.why-card p {
    color: #475569;
    line-height: 1.6;
}

/* Form Section */
.form-section {
    padding: 6rem 1.5rem;
    background-color: #f8fafc;
}

.form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
}

.form-intro {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

/* Final CTA */
.final-cta {
    padding: 5rem 1.5rem;
    background-color: #0f172a;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

/* Footer */
.main-footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 3rem 1.5rem 1.5rem;
}

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

.footer-column h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.footer-column a {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #60a5fa;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #334155;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    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 {
    line-height: 1.6;
    color: #cbd5e1;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #10b981;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #6b7280;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #4b5563;
}

.cookie-link {
    color: #60a5fa;
    text-decoration: underline;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 4rem 1.5rem;
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-intro {
    font-size: 1.2rem;
    color: #e0e7ff;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Detailed */
.services-detailed {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

.service-detail-block {
    margin-bottom: 5rem;
}

.service-detail-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #3b82f6;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: #1e293b;
}

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

.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detail-text ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail-text li {
    margin-bottom: 0.5rem;
    color: #475569;
}

.service-note {
    background-color: #fef3c7;
    padding: 1rem;
    border-radius: 6px;
    color: #92400e;
    font-style: italic;
    margin-top: 1rem;
}

/* Additional Info */
.additional-info {
    padding: 5rem 1.5rem;
    background-color: #f8fafc;
}

.additional-info h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

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

.info-block h3 {
    font-size: 1.4rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.info-block p {
    color: #475569;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 5rem 1.5rem;
    background-color: #1e3a8a;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

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

.story-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

.story-image {
    margin-top: 2rem;
}

.story-image img {
    border-radius: 8px;
    width: 100%;
}

/* Team Section */
.team-section {
    padding: 5rem 1.5rem;
    background-color: #f8fafc;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

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

.team-member h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.team-role {
    display: block;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #64748b;
    line-height: 1.6;
}

/* Equipment Section */
.equipment-section {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

.equipment-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.equipment-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.equipment-text h3 {
    font-size: 1.6rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.equipment-text h3:first-child {
    margin-top: 0;
}

.equipment-text p {
    color: #475569;
    line-height: 1.7;
}

.equipment-image img {
    border-radius: 8px;
    width: 100%;
}

/* Certifications */
.certifications {
    padding: 5rem 1.5rem;
    background-color: #eff6ff;
}

.certifications h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.cert-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.cert-item h3 {
    font-size: 1.4rem;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.cert-item p {
    color: #475569;
    line-height: 1.6;
}

/* Projects Section */
.projects-section {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

.projects-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.project-item {
    background-color: #f8fafc;
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid #f59e0b;
}

.project-item h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.project-item p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Values Section */
.values-section {
    padding: 5rem 1.5rem;
    background-color: #1e293b;
    color: #ffffff;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.values-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.values-content strong {
    color: #ffffff;
    font-size: 1.2rem;
}

/* Contact Page */
.contact-info-section {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

.contact-columns {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-column h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #475569;
    line-height: 1.6;
}

.contact-item a {
    color: #3b82f6;
    text-decoration: underline;
}

.company-data p {
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 1.5rem;
    background-color: #f8fafc;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.faq-item {
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #475569;
    line-height: 1.6;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 1.5rem;
    background-color: #ffffff;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 3rem;
    color: #16a34a;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.selected-service-info {
    background-color: #dcfce7;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.selected-service-info p {
    color: #166534;
    font-size: 1.1rem;
}

.thanks-next-steps {
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.thanks-next-steps ol {
    list-style: decimal;
    margin-left: 1.5rem;
}

.thanks-next-steps li {
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.6;
}

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

/* Additional Resources */
.additional-resources {
    padding: 5rem 1.5rem;
    background-color: #f8fafc;
}

.additional-resources h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

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

.resource-card h3 {
    font-size: 1.4rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.resource-card p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.resource-card a {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: underline;
}

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

.legal-content h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    color: #1e3a8a;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

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

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

.legal-content li {
    margin-bottom: 0.5rem;
    color: #475569;
    line-height: 1.6;
}

.legal-content strong {
    color: #1e293b;
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
    font-size: 1.1rem;
    color: #64748b;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
    }

    .hero-visual {
        flex: 1;
    }

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

    .problem-card {
        flex: 1;
        min-width: 280px;
    }

    .service-block {
        flex-direction: row;
        align-items: center;
    }

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

    .service-text,
    .service-image {
        flex: 1;
    }

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

    .why-card {
        flex: 1;
        min-width: 280px;
    }

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

    .footer-column {
        flex: 1;
    }

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

    .service-detail-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .service-detail-text {
        flex: 1.5;
    }

    .service-detail-image {
        flex: 1;
    }

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

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

    .info-block {
        flex: 1;
    }

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

    .team-member {
        flex: 1;
        min-width: 280px;
    }

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

    .equipment-text,
    .equipment-image {
        flex: 1;
    }

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

    .cert-item {
        flex: 1;
    }

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

    .contact-column {
        flex: 1;
    }

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

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

    .resource-card {
        flex: 1;
    }

    .about-story .section-inner {
        display: flex;
        gap: 3rem;
        align-items: center;
    }

    .story-content {
        flex: 1.5;
    }

    .story-image {
        flex: 1;
        margin-top: 0;
    }

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

@media (max-width: 767px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .hero-lead {
        font-size: 1.1rem;
    }

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

    .trust-number {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}