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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bf0d;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white: #ffffff;
    --accent-color: #ff6b35;
    --bg-dark: #2d3436;
    --text-dark: #2d3436;
    --border-color: #e0e0e0;
}

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(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

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

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

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

.header-main {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.nav-menu {
    display: none;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
    color: var(--light-color);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-primary-large {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-large:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.intro-section {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.intro-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.intro-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefits-dark {
    padding: 5rem 0;
    background-color: var(--bg-dark);
    color: var(--white);
}

.center-title {
    text-align: center;
    margin-bottom: 3rem;
    color: inherit;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.services-preview {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.services-preview h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.trust-section {
    padding: 4rem 0;
    background-color: var(--white);
}

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

.trust-item {
    text-align: center;
    padding: 2rem;
}

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

.trust-item p {
    color: var(--gray-color);
    font-size: 1.05rem;
}

.testimonial-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.testimonial {
    background-color: var(--white);
    padding: 2.5rem;
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 2rem;
    border-radius: 5px;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial cite {
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

.cta-middle {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-middle h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-middle p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.process-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.process-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.step h3 {
    color: var(--primary-color);
}

.step p {
    color: var(--gray-color);
}

.form-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.form-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 2.5rem;
}

.main-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

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

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

.form-checkbox {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.form-checkbox input {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: var(--gray-color);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.footer {
    background-color: var(--bg-dark);
    color: var(--light-color);
    padding: 3rem 0 1.5rem;
}

.footer-columns {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: var(--light-color);
    transition: color 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-alt {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-cookie-alt:hover {
    background-color: var(--white);
    color: var(--dark-color);
}

.page-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.subheader {
    font-size: 1.2rem;
    color: var(--light-color);
}

.about-story {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.story-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.story-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.values-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--gray-color);
    line-height: 1.7;
}

.team-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.team-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

.stat-box {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 8px;
}

.stat-title {
    color: var(--gray-color);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.timeline-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 3px solid var(--secondary-color);
}

.timeline-year {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.certifications-section {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.cert-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: 8px;
}

.cert-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.cert-item p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.cta-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.services-detailed {
    padding: 3rem 0 5rem;
    background-color: var(--white);
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-detail-image img {
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-detail-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-detail-content h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.service-list li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: var(--text-dark);
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-note,
.service-highlight {
    font-style: italic;
    color: var(--gray-color);
    background-color: var(--light-color);
    padding: 1rem;
    border-radius: 5px;
    margin: 1.5rem 0;
}

.service-highlight {
    border-left: 4px solid var(--secondary-color);
}

.additional-services {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.additional-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.additional-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.additional-item p {
    color: var(--gray-color);
    margin-bottom: 1.2rem;
}

.guarantee-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.contact-section {
    padding: 3rem 0 5rem;
    background-color: var(--white);
}

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

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: underline;
}

.map-placeholder {
    background-color: var(--light-color);
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 10px;
    border: 2px dashed var(--border-color);
}

.map-placeholder p {
    font-size: 1.5rem;
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.map-placeholder small {
    color: var(--gray-color);
}

.faq-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.thanks-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-details p {
    line-height: 1.8;
    color: var(--text-dark);
}

.service-selected {
    color: var(--secondary-color);
    font-weight: 600;
}

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

.thanks-next h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.next-steps li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    border-left: 2px solid var(--secondary-color);
    margin-bottom: 1rem;
}

.next-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: -15px;
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

.thanks-info {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.info-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-box p {
    color: var(--text-dark);
    line-height: 1.7;
}

.legal-content {
    padding: 3rem 0 5rem;
    background-color: var(--white);
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-content ul li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    border: 1px solid var(--border-color);
    padding: 1rem;
    text-align: left;
}

.cookies-table th {
    background-color: var(--light-color);
    color: var(--primary-color);
    font-weight: 600;
}

.last-update {
    margin-top: 3rem;
    font-style: italic;
    color: var(--gray-color);
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .nav-menu {
        display: flex;
    }

    .hamburger {
        display: none;
    }

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

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

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

    .benefits-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 1.25rem);
    }

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

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

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

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

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

    .step {
        flex: 1 1 calc(50% - 1.25rem);
    }

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

    .footer-col {
        flex: 1;
    }

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

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

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

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

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

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

    .stat-box {
        flex: 1;
    }

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

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

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

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

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

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

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

    .additional-item {
        flex: 1;
    }

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

    .contact-info,
    .contact-map {
        flex: 1;
    }

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

    .info-box {
        flex: 1;
    }

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

@media (min-width: 1024px) {
    .benefit-item {
        flex: 1 1 calc(25% - 1.875rem);
    }

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

    .trust-item {
        flex: 1 1 calc(25% - 1.5rem);
    }

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