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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #c9a961;
    --accent-color: #8b6914;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

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

.main-nav {
    background-color: var(--primary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #999;
    background-color: rgba(255,255,255,0.1);
    padding: 4px 10px;
    border-radius: 3px;
    margin-top: 5px;
    width: 100%;
    text-align: center;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-accept, .cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

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

.cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26,26,46,0.7), rgba(26,26,46,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--bg-white);
    max-width: 800px;
    padding: 0 20px;
}

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

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-primary, .cta-secondary, .cta-submit {
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.cta-primary:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201,169,97,0.4);
}

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

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

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

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

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

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

.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;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
    background-color: var(--border-color);
}

.split-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

.insight-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.insight-grid {
    display: flex;
    gap: 40px;
}

.insight-card {
    flex: 1;
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.services-grid h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.card-content {
    padding: 25px;
}

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

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 15px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
}

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

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

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

.trust-building h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    flex: 0 0 calc(50% - 15px);
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.trust-icon {
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: bold;
}

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

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

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

.testimonials h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.testimonial-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    padding: 30px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

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

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

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

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

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

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

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

.cta-submit {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    margin-top: 20px;
}

.cta-submit:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

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

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 50px 0 20px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--bg-light);
}

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

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

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

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

.footer-disclaimer {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: #999;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #999;
}

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

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 20px;
    color: var(--bg-light);
}

.about-intro {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    background-color: var(--border-color);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.value-card {
    flex: 0 0 calc(50% - 15px);
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

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

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

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 60px;
}

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

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

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

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.team-card {
    flex: 1;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.team-card h3 {
    font-size: 22px;
    margin: 20px 20px 5px;
    color: var(--primary-color);
}

.team-card > p {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0 20px;
}

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

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

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

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

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--border-color);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 25px 0;
}

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

.customization-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.customization-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.custom-option {
    flex: 0 0 calc(50% - 15px);
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

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

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info > p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 30px;
}

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

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

.contact-detail .note {
    font-size: 14px;
    font-style: italic;
    margin-top: 10px;
}

.contact-map {
    flex: 1;
    background-color: var(--border-color);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 400px;
    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(26,26,46,0.9), transparent);
    padding: 20px;
    color: var(--bg-white);
}

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

.visit-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.visit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.visit-step {
    flex: 0 0 calc(50% - 15px);
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.visit-icon {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 50px;
}

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

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

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

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 0 0 calc(50% - 15px);
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

.thanks-section {
    padding: 80px 0;
    background-color: var(--bg-white);
    min-height: 60vh;
}

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

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

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

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

.thanks-details {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

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

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

.service-confirmation {
    margin: 30px 0;
}

.service-selected {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.service-selected h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

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

.thanks-contact {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.thanks-contact p {
    margin-bottom: 5px;
    color: var(--text-light);
}

.contact-email {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1024px) {
    .cards-grid {
        gap: 20px;
    }

    .service-card {
        flex: 0 0 calc(50% - 10px);
    }

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

    .insight-card {
        flex: 0 0 100%;
    }

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

    .testimonial-card {
        flex: 0 0 100%;
    }

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

    .team-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        height: 400px;
    }

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

    .hero-content p {
        font-size: 18px;
    }

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

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

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

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

    .service-card {
        flex: 0 0 100%;
    }

    .trust-item {
        flex: 0 0 100%;
    }

    .value-card {
        flex: 0 0 100%;
    }

    .custom-option {
        flex: 0 0 100%;
    }

    .visit-step {
        flex: 0 0 100%;
    }

    .faq-item {
        flex: 0 0 100%;
    }

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

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

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

    .team-card {
        flex: 0 0 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

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

    .hero-content p {
        font-size: 16px;
    }

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

    .thanks-content h1 {
        font-size: 32px;
    }
}