/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

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

ul {
    list-style: none;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background: #ffffff;
    color: #2c3e50;
}

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

.navigation {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: none;
    gap: 2rem;
}

.nav-menu li a {
    font-weight: 500;
    color: #34495e;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #3498db;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Split Section */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

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

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Buttons */
.cta-primary,
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.cta-primary:hover,
.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: transparent;
    color: #3498db;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

/* Split Layout Sections */
.trust-section,
.why-section,
.team-section,
.about-story,
.contact-section,
.split-layout {
    display: flex;
    flex-direction: column;
}

.trust-section,
.about-story,
.contact-section,
.split-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-left,
.why-visual,
.team-image,
.about-image,
.contact-map,
.service-detail-image {
    flex: 1;
    min-height: 350px;
    overflow: hidden;
}

.trust-left img,
.why-visual img,
.team-image img,
.about-image img,
.contact-map img,
.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-right,
.why-content,
.team-content,
.about-content,
.contact-info,
.service-detail-content {
    flex: 1;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-right h2,
.why-content h2,
.team-content h2,
.about-content h2,
.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.trust-right p,
.why-content p,
.team-content p,
.about-content p,
.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-list li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Why Section */
.why-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.reason-card {
    margin-bottom: 2rem;
}

.reason-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.reason-card p {
    margin: 0;
}

/* Services Section */
.services-intro {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.services-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-icon {
    height: 200px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    padding: 1.5rem 1.5rem 1rem;
    font-weight: 600;
}

.service-card p {
    padding: 0 1.5rem;
    color: #666;
    line-height: 1.7;
}

.service-price {
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

.service-card .btn-secondary {
    margin: 1rem 1.5rem 1.5rem;
}

/* CTA Sections */
.cta-inline,
.cta-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

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

.cta-content h2,
.cta-banner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

/* Testimonials */
.testimonials-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

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

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #888;
    font-style: normal;
}

/* Form Section */
.form-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.05rem;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.btn-submit {
    padding: 1rem 2.5rem;
    background: #27ae60;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
    color: #3498db;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #e74c3c;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
}

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

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

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Services Detailed */
.services-detailed {
    padding: 3rem 0;
}

.service-detail {
    padding: 3rem 0;
}

.service-detail:nth-child(even) {
    background: #f8f9fa;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 1.5rem 0 1rem;
}

.service-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #555;
}

.service-detail-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-price-box {
    background: #f0f9ff;
    border: 2px solid #3498db;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin: 0.5rem 0;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.value-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

/* Equipment Section */
.equipment-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.equipment-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
}

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

.equipment-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.equipment-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.equipment-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.equipment-item p {
    color: #666;
    line-height: 1.6;
}

/* Team Stats */
.team-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.team-stats li {
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 6px;
}

.team-stats strong {
    color: #3498db;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.25rem;
}

/* Certifications */
.certifications-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.certifications-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

.cert-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cert-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cert-item h3 {
    font-size: 1.3rem;
    color: #27ae60;
    margin-bottom: 0.75rem;
}

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

/* Contact Page */
.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

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

.contact-detail a {
    color: #3498db;
}

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

.contact-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin-top: 2rem;
    border-radius: 4px;
}

.contact-note p {
    margin: 0;
    color: #856404;
}

.map-caption {
    padding: 1rem;
    background: #f8f9fa;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Reasons */
.contact-reasons {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.contact-reasons h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

.reasons-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reason-box {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.reason-box h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

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

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

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

/* Thanks Page */
.thanks-section {
    padding: 4rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-service {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #3498db;
}

.thanks-next {
    text-align: left;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

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

.next-steps {
    margin-left: 1.5rem;
}

.next-steps li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.7;
}

.next-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.thanks-contact {
    padding: 1.5rem;
    background: #fff3cd;
    border-radius: 8px;
}

.thanks-contact p {
    margin: 0.5rem 0;
    color: #856404;
}

.thanks-contact a {
    color: #3498db;
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f0f9ff;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.legal-container h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-container ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-container ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #666;
    line-height: 1.7;
}

.legal-container ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.legal-container a {
    color: #3498db;
    font-weight: 600;
}

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

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

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .hero-split,
    .trust-section,
    .why-section,
    .team-section,
    .about-story,
    .contact-section,
    .split-layout {
        flex-direction: row;
    }

    .split-reverse {
        flex-direction: row-reverse;
    }

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

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

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

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

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

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

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

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

    .cert-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .reason-box {
        flex: 1 1 calc(50% - 0.75rem);
    }

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

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

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

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

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

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .equipment-item {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .reasons-grid {
        flex-wrap: nowrap;
    }

    .reason-box {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .sticky-cta {
        display: block;
    }

    .legal-container {
        padding: 4rem 3rem;
    }
}
