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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2d3748;
    background-color: #ffffff;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #718096;
    padding: 0.25rem 0.75rem;
    background-color: #f7fafc;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #2d3748;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content-left {
    flex: 1;
    padding: 4rem 2rem 4rem 4rem;
    background-color: #f7fafc;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-left h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.hero-content-left p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #cbd5e0;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d3748;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #1a202c;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2d3748;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2d3748;
    color: #ffffff;
}

.intro-split {
    display: flex;
    min-height: 600px;
}

.intro-image-left {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

.intro-content-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content-right h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.intro-content-right p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.approach-split {
    display: flex;
    background-color: #f7fafc;
}

.approach-content-left {
    flex: 1;
    padding: 4rem;
}

.approach-content-left h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2rem;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.step-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.approach-image-right {
    flex: 1;
    background-color: #cbd5e0;
    overflow: hidden;
}

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

.services-showcase {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.services-showcase h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #f7fafc;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    padding: 1.5rem 1.5rem 0.75rem;
}

.service-card p {
    font-size: 1rem;
    color: #4a5568;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2d3748;
    padding: 0 1.5rem 1rem;
}

.select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.875rem 1.5rem;
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1a202c;
}

.form-section-split {
    display: flex;
    background-color: #f7fafc;
}

.form-content-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-content-left h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.form-content-left p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.form-benefits ul {
    list-style: none;
    padding: 0;
}

.form-benefits li {
    font-size: 1.05rem;
    color: #4a5568;
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.form-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d3748;
    font-weight: 700;
}

.form-container-right {
    flex: 1;
    padding: 4rem;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

.consultation-form {
    width: 100%;
    max-width: 500px;
}

.selected-service-display {
    background-color: #f7fafc;
    padding: 1.25rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.selected-service-display.hidden {
    display: none;
}

.selected-service-display p {
    margin-bottom: 0.5rem;
    color: #2d3748;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d3748;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.trust-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-split {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    min-width: 280px;
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
}

.testimonial-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2d3748;
}

.disclaimer-section {
    padding: 3rem 4rem;
    background-color: #fffaf0;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
}

.main-footer {
    background-color: #2d3748;
    color: #ffffff;
    padding: 3rem 4rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.625rem;
}

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #4a5568;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #cbd5e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: #cbd5e0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

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

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #38a169;
}

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2d3748;
}

.about-hero-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.about-content-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content-left h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.about-content-left p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.about-image-right {
    flex: 1;
    background-color: #cbd5e0;
    overflow: hidden;
}

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

.values-split {
    display: flex;
    background-color: #f7fafc;
}

.values-image-left {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

.values-content-right {
    flex: 1;
    padding: 4rem;
}

.values-content-right h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.value-item h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.625rem;
}

.value-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.values-split.reverse {
    flex-direction: row-reverse;
}

.team-section {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-intro {
    font-size: 1.15rem;
    color: #4a5568;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-content-split {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-text p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.team-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-section-split {
    display: flex;
    background-color: #f7fafc;
}

.approach-left {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

.approach-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-right h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.approach-right p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.services-hero {
    padding: 4rem;
    background-color: #f7fafc;
    text-align: center;
}

.services-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.25rem;
}

.services-intro {
    font-size: 1.15rem;
    color: #4a5568;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.service-detail-split {
    display: flex;
}

.service-content-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.service-content-left h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.service-content-left p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-benefits {
    margin: 2rem 0;
}

.service-benefits h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.service-benefits ul {
    list-style: none;
    padding: 0;
}

.service-benefits li {
    font-size: 1.05rem;
    color: #4a5568;
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.service-benefits li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d3748;
    font-weight: 700;
    font-size: 1.5rem;
}

.service-price-display {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3748;
    margin: 1.5rem 0;
}

.service-image-right {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

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

.service-image-left {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

.service-content-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f7fafc;
}

.service-content-right h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.service-content-right p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.cta-section {
    padding: 5rem 4rem;
    background-color: #2d3748;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

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

.contact-hero {
    padding: 4rem;
    background-color: #f7fafc;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.25rem;
}

.contact-hero p {
    font-size: 1.15rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.contact-split {
    display: flex;
    background-color: #ffffff;
}

.contact-info-left {
    flex: 1;
    padding: 4rem;
}

.contact-info-left h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.contact-note p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-image-right {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

.faq-section {
    padding: 5rem 4rem;
    background-color: #f7fafc;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.875rem;
}

.faq-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 4rem;
    background-color: #f7fafc;
    min-height: 60vh;
}

.thanks-content {
    max-width: 900px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.5rem;
    text-align: center;
}

.thanks-message {
    font-size: 1.25rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-details {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.next-steps h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.step h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.step p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d3748;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2d3748;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d3748;
    color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.update-date {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3748;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legal-content a {
    color: #2d3748;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1a202c;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .approach-split,
    .form-section-split,
    .about-hero-split,
    .values-split,
    .team-content-split,
    .approach-section-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .values-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-content-left,
    .intro-content-right,
    .approach-content-left,
    .form-content-left,
    .form-container-right,
    .about-content-left,
    .values-content-right,
    .approach-right,
    .service-content-left,
    .service-content-right,
    .contact-info-left {
        padding: 3rem 2rem;
    }

    .hero-image-right,
    .intro-image-left,
    .approach-image-right,
    .about-image-right,
    .values-image-left,
    .approach-left,
    .service-image-right,
    .service-image-left,
    .contact-image-right {
        min-height: 400px;
    }

    .main-nav {
        gap: 1.25rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

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

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

@media (max-width: 640px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-content-left h1,
    .about-content-left h1 {
        font-size: 2rem;
    }

    .services-showcase,
    .trust-section,
    .team-section,
    .faq-section,
    .thanks-section {
        padding: 3rem 2rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}