* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f4f;
    --primary-dark: #1a3d31;
    --primary-light: #3d7a66;
    --accent-color: #d47843;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-cream: #faf7f5;
    --border-color: #e0e0e0;
    --success-color: #2d8659;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

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

.main-nav {
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 35px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.hero-section {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2c5f4f 0%, #1a3d31 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1556911220-bff31c812dba?w=1600&h=900&fit=crop') center/cover;
    opacity: 0.15;
}

.hero-overlay {
    position: relative;
    width: 100%;
    padding: 80px 0;
}

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

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--bg-white);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #c26835;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

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

.intro-section {
    padding: 90px 0;
    background: var(--bg-white);
}

.intro-flex {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.intro-text h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

.intro-text p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.systems-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.section-title-center {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.system-card {
    background: var(--bg-white);
    padding: 45px 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.system-card:hover {
    transform: translateY(-5px);
}

.system-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.system-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.system-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.system-features {
    list-style: none;
}

.system-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-medium);
}

.system-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.benefits-section {
    padding: 90px 0;
    background: var(--bg-white);
}

.benefits-offset {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.benefits-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.benefits-content h2 {
    font-size: 2.1rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 700;
}

.benefit-item {
    margin-bottom: 30px;
}

.benefit-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.benefit-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.services-preview {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 100%);
}

.services-preview h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.services-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 50px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.service-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 600;
}

.service-price {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 700;
}

.service-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.process-section {
    padding: 90px 0;
    background: var(--bg-cream);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.step {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
    opacity: 0.3;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-medium);
    line-height: 1.7;
}

.testimonials-section {
    padding: 90px 0;
    background: var(--bg-white);
}

.testimonials-section h2 {
    font-size: 2.3rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.testimonial {
    background: var(--bg-cream);
    padding: 35px 30px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

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

.trust-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--bg-white);
}

.trust-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--bg-white);
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.trust-item {
    padding: 20px;
}

.trust-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.trust-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.form-intro p {
    font-size: 1.05rem;
    color: var(--text-medium);
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.final-cta {
    padding: 90px 0;
    background: var(--bg-cream);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.final-cta p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.main-footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

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

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col p {
    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: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.btn-sticky {
    display: inline-block;
    padding: 14px 28px;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 120, 67, 0.4);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #c26835;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 120, 67, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-accept {
    background: var(--accent-color);
    color: var(--bg-white);
}

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

.btn-reject {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-reject:hover {
    border-color: var(--bg-white);
}

.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-story {
    padding: 90px 0;
    background: var(--bg-white);
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

.story-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    padding: 90px 0;
    background: var(--bg-cream);
}

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

.value-card {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.team-section {
    padding: 90px 0;
    background: var(--bg-white);
}

.team-section h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.team-intro {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 50px;
}

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

.team-member {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

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

.team-member p {
    color: var(--text-medium);
    line-height: 1.7;
}

.approach-section {
    padding: 90px 0;
    background: var(--bg-light);
}

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

.approach-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.approach-content h2 {
    font-size: 2.1rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

.approach-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.certifications-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.certifications-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.certifications-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section {
    padding: 90px 0;
    background: var(--bg-cream);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.services-detailed {
    padding: 80px 0;
    background: var(--bg-white);
}

.service-detail {
    margin-bottom: 70px;
}

.service-detail-header {
    margin-bottom: 30px;
}

.service-detail-title {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-detail-title h2 {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.price-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    align-self: flex-start;
}

.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-description h4 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.service-description p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-description ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-description li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 8px;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.pricing-notes {
    padding: 80px 0;
    background: var(--bg-light);
}

.pricing-notes h2 {
    font-size: 2.1rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

.pricing-notes p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.pricing-factors {
    margin-left: 20px;
}

.pricing-factors li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 10px;
}

.warranty-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.warranty-section h2 {
    font-size: 2.3rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.warranty-item {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.warranty-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.warranty-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.contact-form-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-form-wrapper p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-section h2 {
    font-size: 2.3rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.map-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.map-section h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

.map-placeholder {
    background: var(--bg-white);
    padding: 80px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.map-placeholder p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.map-note {
    font-size: 0.95rem;
    color: var(--text-light);
}

.legal-content {
    padding: 80px 0;
    background: var(--bg-white);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 15px 20px;
}

.legal-content li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.update-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

.thanks-section {
    padding: 100px 0;
    background: var(--bg-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
    background: var(--bg-white);
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--success-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-content p {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-info {
    background: var(--bg-cream);
    padding: 15px 25px;
    border-radius: 6px;
    margin: 25px 0;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .hamburger {
        display: none;
    }

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

    .hero-subtitle {
        font-size: 1.25rem;
    }

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

    .intro-text {
        flex: 1;
    }

    .intro-image {
        flex: 1;
    }

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

    .benefits-offset {
        flex-direction: row-reverse;
        align-items: center;
    }

    .benefits-image {
        flex: 0 0 45%;
    }

    .benefits-content {
        flex: 1;
    }

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

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

    .step {
        flex: 0 0 calc(50% - 18px);
    }

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

    .trust-grid {
        flex-direction: row;
        justify-content: space-around;
    }

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

    .footer-col {
        flex: 0 0 30%;
    }

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

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

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

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

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

    .approach-image {
        flex: 0 0 45%;
    }

    .approach-content {
        flex: 1;
    }

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

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

    .service-description {
        flex: 1;
    }

    .service-image {
        flex: 0 0 40%;
    }

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

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

    .contact-info {
        flex: 0 0 40%;
    }

    .contact-form-wrapper {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 4rem;
    }

    .step {
        flex: 0 0 calc(25% - 27px);
    }
}