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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

.main-header {
    background-color: #1a202c;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.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: #ffffff;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #a0aec0;
    padding: 0.25rem 0.75rem;
    border: 1px solid #4a5568;
    border-radius: 4px;
}

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

.main-nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #63b3ed;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f7fafc;
}

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

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

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

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

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

.cta-primary {
    display: inline-block;
    background-color: #3182ce;
    color: #ffffff;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2c5aa0;
}

.stats-split {
    display: flex;
    min-height: 500px;
}

.stats-image {
    flex: 1;
    background-color: #e2e8f0;
}

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

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

.stats-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

.stat-item {
    margin-bottom: 2rem;
}

.stat-item h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

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

.insight-section {
    background-color: #2d3748;
    color: #ffffff;
    padding: 5rem 2rem;
}

.insight-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.insight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.insight-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.insight-text a {
    color: #63b3ed;
    text-decoration: none;
}

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

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

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

.services-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.services-left p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-secondary {
    display: inline-block;
    background-color: #2d3748;
    color: #ffffff;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.services-right {
    flex: 1;
    padding: 3rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.service-card-mini {
    background-color: #f7fafc;
    padding: 2rem;
    border-left: 4px solid #3182ce;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.service-card-mini h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.service-card-mini p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3182ce;
}

.testimonials-split {
    display: flex;
    min-height: 500px;
    background-color: #edf2f7;
}

.testimonial-left {
    flex: 1;
    background-color: #cbd5e0;
}

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

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

.testimonial-right h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

blockquote {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #4299e1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

blockquote p {
    font-size: 1.125rem;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-style: italic;
}

cite {
    font-size: 0.9rem;
    color: #718096;
    font-style: normal;
}

.cta-full {
    background-color: #3182ce;
    color: #ffffff;
    text-align: center;
    padding: 5rem 2rem;
}

.cta-full h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-full p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.cta-large {
    display: inline-block;
    background-color: #ffffff;
    color: #3182ce;
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s;
}

.cta-large:hover {
    background-color: #edf2f7;
    transform: translateY(-2px);
}

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

.disclaimer-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    border: 2px solid #ed8936;
    border-radius: 8px;
    background-color: #ffffff;
}

.disclaimer-box p {
    font-size: 0.9rem;
    color: #2d3748;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 4rem 2rem 2rem;
}

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-col p {
    font-size: 0.9rem;
    color: #a0aec0;
}

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

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

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #63b3ed;
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
}

.footer-references h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-references ol {
    font-size: 0.85rem;
    color: #a0aec0;
    padding-left: 1.5rem;
}

.footer-references ol li {
    margin-bottom: 0.5rem;
}

.footer-references ol li a {
    color: #63b3ed;
    text-decoration: none;
}

.footer-references ol li a:hover {
    text-decoration: underline;
}

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

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

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    color: #e2e8f0;
}

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

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

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

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

.btn-reject {
    background-color: #4a5568;
    color: #ffffff;
}

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

.page-hero-split {
    display: flex;
    min-height: 400px;
    background-color: #edf2f7;
}

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

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.page-hero-content p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

.page-hero-image {
    flex: 1;
    background-color: #cbd5e0;
}

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

.services-grid {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-full {
    display: flex;
    margin-bottom: 4rem;
    min-height: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-image-left,
.service-image-right {
    flex: 1;
    background-color: #e2e8f0;
}

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

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

.service-content-right h2,
.service-content-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.service-content-right p,
.service-content-left p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-content-right ul,
.service-content-left ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-content-right ul li,
.service-content-left ul li {
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background-color: #3182ce;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #2c5aa0;
    transform: translateY(-1px);
}

.form-section-split {
    display: flex;
    min-height: 600px;
    background-color: #f7fafc;
    padding: 4rem 2rem;
}

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

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.form-intro p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

.form-container {
    flex: 1;
    padding: 2rem;
    display: flex;
    align-items: center;
}

#consultation-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

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

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

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

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

.form-group input[readonly] {
    background-color: #edf2f7;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #48bb78;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background-color: #38a169;
    transform: translateY(-1px);
}

.about-hero-split {
    display: flex;
    min-height: 500px;
}

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

.about-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.about-text p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

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

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

.mission-split {
    display: flex;
    min-height: 500px;
}

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

.mission-image {
    flex: 1;
    background-color: #e2e8f0;
}

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

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

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.mission-text p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #edf2f7;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

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

.approach-split {
    display: flex;
    min-height: 500px;
}

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

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.approach-text p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

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

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

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.team-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: #e2e8f0;
    line-height: 1.8;
}

.team-stats {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #63b3ed;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: #cbd5e0;
}

.cta-about {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f7fafc;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.cta-about p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

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

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.contact-hero p {
    font-size: 1.125rem;
    color: #4a5568;
}

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-info {
    flex: 1;
    padding: 4rem;
    background-color: #ffffff;
}

.info-block {
    margin-bottom: 3rem;
}

.info-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.contact-item {
    margin-bottom: 2rem;
}

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

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

.info-block p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-block a {
    color: #3182ce;
    text-decoration: none;
}

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

.contact-image {
    flex: 1;
    background-color: #cbd5e0;
}

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

.location-section {
    padding: 4rem 2rem;
    background-color: #edf2f7;
    text-align: center;
}

.location-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.location-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

.thanks-section {
    display: flex;
    min-height: 600px;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.thanks-content > p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.thanks-info {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.thanks-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.thanks-info p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.thanks-next-steps {
    margin-bottom: 2rem;
}

.thanks-next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.thanks-next-steps ul {
    padding-left: 1.5rem;
}

.thanks-next-steps ul li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.btn-primary:hover {
    background-color: #2c5aa0;
}

.btn-secondary {
    display: inline-block;
    background-color: #4a5568;
    color: #ffffff;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.thanks-image {
    flex: 1;
    background-color: #cbd5e0;
}

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

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

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

.legal-intro {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.legal-page p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-page ul li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page a {
    color: #3182ce;
    text-decoration: none;
}

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

.legal-update {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-split,
    .stats-split,
    .services-preview-split,
    .testimonials-split,
    .service-card-full,
    .page-hero-split,
    .about-hero-split,
    .mission-split,
    .approach-split,
    .contact-split,
    .thanks-section,
    .form-section-split {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right,
    .stats-image,
    .stats-content,
    .services-left,
    .services-right,
    .testimonial-left,
    .testimonial-right,
    .service-image-left,
    .service-image-right,
    .service-content-left,
    .service-content-right,
    .page-hero-content,
    .page-hero-image,
    .about-text,
    .about-image,
    .mission-image,
    .mission-text,
    .approach-text,
    .approach-image,
    .contact-info,
    .contact-image,
    .thanks-content,
    .thanks-image,
    .form-intro,
    .form-container {
        flex: none;
        width: 100%;
    }

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

    .stats-content h2,
    .services-left h2,
    .testimonial-right h2,
    .mission-text h2,
    .approach-text h2 {
        font-size: 1.75rem;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}