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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b7355;
    --accent-color: #d4a373;
    --dark-bg: #1a1a1a;
    --light-bg: #f9f7f4;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

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

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

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

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

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1487222477894-8943e31ef7b2?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 79, 0.85), rgba(139, 115, 85, 0.75));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--dark-bg);
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s, background-color 0.3s;
    font-size: 17px;
}

.btn-hero:hover {
    background-color: #e5b585;
    transform: translateY(-2px);
}

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

.intro-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.intro-section p {
    font-size: 19px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.8;
}

.philosophy-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.split-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.link-arrow {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 10px;
    transition: transform 0.3s;
}

.link-arrow::after {
    content: ' →';
}

.link-arrow:hover {
    transform: translateX(5px);
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.problem-section {
    padding: 90px 0;
}

.dark-bg {
    background-color: var(--dark-bg);
    color: var(--white);
}

.dark-bg h2,
.dark-bg h3 {
    color: var(--white);
}

.dark-bg p {
    color: rgba(255, 255, 255, 0.85);
}

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

.problem-section h2 {
    font-size: 38px;
    margin-bottom: 60px;
}

.problem-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.problem-item {
    flex: 1;
    text-align: center;
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.problem-item p {
    font-size: 16px;
    line-height: 1.6;
}

.services-preview {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title-center {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 70px;
}

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

.service-card {
    display: flex;
    gap: 40px;
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.service-visual {
    flex: 1;
    min-height: 300px;
}

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

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

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

.btn-primary-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 17px;
}

.btn-primary-large:hover {
    background-color: #1f4537;
    transform: translateY(-2px);
}

.btn-secondary-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    font-size: 17px;
    margin-left: 15px;
}

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

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

.trust-section h2 {
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.testimonial {
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

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

.value-section {
    padding: 90px 0;
}

.values-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    flex: 1;
}

.value-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
}

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

.process-section h2 {
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    gap: 30px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.form-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.contact-form {
    background-color: var(--white);
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    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);
}

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

.btn-submit:hover {
    background-color: #1f4537;
}

.final-cta-section {
    padding: 90px 0;
}

.final-cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
}

.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

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

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

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

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

.sticky-btn {
    display: block;
    padding: 14px 28px;
    background-color: var(--accent-color);
    color: var(--dark-bg);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

.btn-primary {
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1f4537;
}

.btn-secondary {
    padding: 10px 25px;
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

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

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

.page-header h1 {
    font-size: 46px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 19px;
    opacity: 0.9;
}

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

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

.category-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background-color: var(--light-bg);
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.price-details h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.price-details p {
    font-size: 15px;
    color: var(--text-light);
}

.price-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 120px;
    text-align: right;
}

.service-benefits {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.benefit {
    display: flex;
    gap: 20px;
    background-color: var(--white);
    padding: 25px;
    border-radius: 6px;
}

.benefit-icon {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
}

.benefit-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.benefit-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    padding: 90px 0;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
}

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

.story-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.story-section p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.team-section h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    flex: 1;
    text-align: center;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
}

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

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

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

.team-member p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.values-section {
    padding: 90px 0;
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
}

.philosophy-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
}

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

.journey-section h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
}

.timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 100px;
}

.timeline-content {
    flex: 1;
    padding: 20px 0;
    border-left: 3px solid var(--primary-color);
    padding-left: 30px;
}

.timeline-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.mission-section h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.mission-statement {
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 500;
}

.mission-section p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.info-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    color: var(--white);
}

.map-overlay p {
    font-size: 16px;
    font-weight: 600;
}

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

.faq-section h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.faq-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-cta-section {
    padding: 90px 0;
}

.contact-cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
}

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

.legal-section h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-section h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 12px;
}

.legal-section p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-section ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-section ul li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

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

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

.thanks-section h1 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.thanks-details {
    margin-bottom: 50px;
}

.thanks-details h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.next-steps {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.next-step {
    flex: 1;
    text-align: center;
}

.thanks-info {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    border-left: 4px solid var(--accent-color);
}

.thanks-info h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-align: left;
}

.thanks-info p {
    font-size: 16px;
    color: var(--text-light);
    text-align: left;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.thanks-contact {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.thanks-contact h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.thanks-contact p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.email-link {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .split-content {
        gap: 40px;
    }

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

    .value-item {
        flex: 1 1 45%;
    }

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

    .team-member {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .split-content {
        flex-direction: column;
    }

    .service-card,
    .service-card.reverse {
        flex-direction: column;
    }

    .problem-grid {
        flex-direction: column;
    }

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

    .process-steps {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .timeline-year {
        min-width: auto;
    }

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

    .next-steps {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-secondary-large {
        margin-left: 0;
        margin-top: 10px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .section-title-center,
    .page-header h1 {
        font-size: 32px;
    }

    .service-info {
        padding: 25px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}