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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #6b9f7d;
    --accent-color: #f4a261;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

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

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

h1, h2, h3, h4 {
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-sm);
}

ul {
    margin-bottom: var(--spacing-sm);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--background-white);
    padding: var(--spacing-md);
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    max-width: 1200px;
    margin: 0 auto;
}

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

.cookie-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #45a049;
}

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

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

.main-header {
    background: var(--background-white);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.main-nav {
    display: none;
    gap: var(--spacing-md);
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

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

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

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

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

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

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-image: url('https://images.unsplash.com/photo-1548199973-03cce0bbc87b?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 90, 61, 0.7);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: var(--spacing-md);
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: #e76f51;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.intro-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-white);
}

.intro-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

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

.intro-text p {
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.services-preview {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: var(--spacing-md);
    box-shadow: 0 4px 15px 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 8px 25px rgba(0,0,0,0.15);
}

.service-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: var(--spacing-sm);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
}

.select-service {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service:hover {
    background: var(--secondary-color);
}

.why-choose-us {
    padding: var(--spacing-xl) 0;
    background: var(--background-white);
}

.why-content h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.reason-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

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

.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: var(--primary-color);
    color: white;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    font-size: 1.05rem;
}

.author {
    font-weight: 600;
    color: var(--accent-color);
}

.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
    text-align: center;
}

.cta-section h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.cta-section p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.cta-button-secondary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.trust-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-white);
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.trust-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

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

.form-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.form-wrapper > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    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: var(--primary-color);
}

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

.submit-button:hover {
    background: #e76f51;
}

.final-cta {
    padding: var(--spacing-xl) 0;
    background: var(--secondary-color);
    text-align: center;
    color: white;
}

.final-cta h2 {
    margin-bottom: var(--spacing-md);
}

.cta-button-alt {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-alt:hover {
    background: var(--background-light);
    transform: translateY(-2px);
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-sm) 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

.footer-col p {
    color: #cccccc;
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-col ul li a {
    color: #cccccc;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.9rem;
}

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

.sticky-button {
    display: block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.sticky-button:hover {
    background: #e76f51;
    transform: scale(1.05);
}

.page-hero {
    padding: var(--spacing-xl) 0 var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: var(--spacing-sm);
}

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

.about-intro {
    padding: var(--spacing-xl) 0;
    background: var(--background-white);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.about-text h2 {
    color: var(--primary-color);
}

.about-text p {
    color: var(--text-light);
    font-size: 1.05rem;
}

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

.values-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

.values-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.value-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

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

.team-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-white);
}

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

.team-section > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

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

.approach-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

.approach-content h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.approach-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

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

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

.commitment-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-white);
}

.commitment-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.commitment-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-about {
    padding: var(--spacing-xl) 0;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

.cta-about h2 {
    margin-bottom: var(--spacing-sm);
}

.cta-about p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.services-detail {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

.service-detail-card {
    background: white;
    margin-bottom: var(--spacing-lg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.service-detail-text {
    padding: var(--spacing-lg);
}

.service-detail-text h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.price-tag {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.service-detail-text p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.service-detail-text ul {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.service-detail-text ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: var(--spacing-xs);
    color: var(--text-light);
}

.service-detail-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.packages-info {
    padding: var(--spacing-xl) 0;
    background: var(--background-white);
    text-align: center;
}

.packages-info h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.packages-info p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-info-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

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

.contact-info-card a {
    color: var(--accent-color);
}

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

.contact-details {
    padding: var(--spacing-xl) 0;
    background: var(--background-white);
}

.details-content h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.details-content p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.info-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

.info-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-block {
    background: white;
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

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

.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-white);
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    background: var(--background-light);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

.visit-us {
    padding: var(--spacing-xl) 0;
    background: var(--secondary-color);
    text-align: center;
    color: white;
}

.visit-us h2 {
    margin-bottom: var(--spacing-sm);
}

.visit-us p {
    font-size: 1.1rem;
}

.thanks-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-icon {
    margin-bottom: var(--spacing-md);
}

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

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.service-confirmation {
    background: var(--background-light);
    padding: var(--spacing-md);
    border-radius: 6px;
    margin: var(--spacing-md) 0;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.next-steps {
    padding: var(--spacing-xl) 0;
    background: var(--background-white);
}

.next-steps h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.step-card {
    background: var(--background-light);
    padding: var(--spacing-md);
    border-radius: 8px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

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

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

.additional-info {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

.additional-info h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.additional-info > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.info-list {
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
}

.info-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.info-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.info-list a {
    color: var(--accent-color);
}

.info-list a:hover {
    text-decoration: underline;
}

.legal-content {
    padding: var(--spacing-xl) 0;
    background: var(--background-white);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    color: var(--primary-color);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.legal-text h3 {
    color: var(--secondary-color);
    margin-top: var(--spacing-md);
}

.legal-text p,
.legal-text li {
    color: var(--text-light);
    line-height: 1.8;
}

.legal-text ul {
    margin-left: var(--spacing-md);
}

.legal-text a {
    color: var(--accent-color);
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-md) 0;
}

.cookie-table th,
.cookie-table td {
    padding: var(--spacing-sm);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

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

.cookie-table td {
    color: var(--text-light);
}

@media (min-width: 640px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

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

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

    .service-card {
        flex: 1 1 calc(50% - var(--spacing-sm));
    }

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

    .testimonial {
        flex: 1 1 calc(50% - var(--spacing-sm));
    }

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

    .trust-item {
        flex: 1 1 calc(50% - var(--spacing-sm));
    }

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

    .value-card {
        flex: 1 1 calc(50% - var(--spacing-sm));
    }

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

    .contact-info-card {
        flex: 1;
    }

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

    .info-block {
        flex: 1;
    }

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

    .step-card {
        flex: 1;
    }

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

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

    h2 {
        font-size: 2.5rem;
    }

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

    .main-nav {
        display: flex;
    }

    .hamburger {
        display: none;
    }

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

    .intro-text {
        flex: 1;
    }

    .intro-image {
        flex: 1;
    }

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

    .about-text {
        flex: 1;
    }

    .about-image {
        flex: 1;
    }

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

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

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

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

    .service-detail-image img {
        height: 100%;
        object-fit: cover;
    }

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

    .footer-col {
        flex: 1;
    }

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

    .reason-item {
        flex: 1 1 calc(33.333% - var(--spacing-md));
    }
}

@media (min-width: 1024px) {
    .services-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        flex: 1 1 calc(33.333% - var(--spacing-sm));
    }

    .testimonials {
        flex-wrap: nowrap;
    }

    .testimonial {
        flex: 1 1 calc(33.333% - var(--spacing-sm));
    }

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

    .trust-item {
        flex: 1 1 calc(33.333% - var(--spacing-sm));
    }

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

    .value-card {
        flex: 1 1 calc(50% - var(--spacing-sm));
    }
}