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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7f;
    --accent-color: #d4af37;
    --text-dark: #1f1f1f;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

.header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    padding: 5px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

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

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.hero-text-content {
    max-width: 600px;
}

.hero-text-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-text-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.intro-split {
    display: flex;
    align-items: stretch;
}

.intro-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.intro-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

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

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

.services-preview-split {
    display: flex;
    background-color: var(--bg-light);
}

.services-text {
    flex: 1;
    padding: 80px 60px;
}

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

.services-text > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.service-item {
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

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

.service-item p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.price {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 5px;
    font-size: 16px;
}

.services-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

.inline-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.inline-link:hover {
    color: var(--primary-color);
}

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

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--bg-white);
}

.testimonials-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

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

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--accent-color);
}

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

.form-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-left {
    flex: 1;
}

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

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

.form-right {
    flex: 1;
}

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

.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: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    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(--secondary-color);
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

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

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

.trust-text {
    flex: 1;
}

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

.trust-list {
    list-style: none;
}

.trust-list li {
    padding: 15px 0 15px 30px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 20px;
}

.trust-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    border-radius: 8px;
}

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

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

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

.footer-column h3 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

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

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

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

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

.footer-column p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-disclaimer {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

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

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

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

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

.cookie-accept:hover,
.cookie-reject:hover {
    transform: translateY(-2px);
}

.page-hero {
    padding: 100px 0 60px;
    background-color: var(--bg-light);
    text-align: center;
}

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

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

.about-story-split {
    display: flex;
}

.story-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.story-content {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.story-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

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

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

.mission-text {
    flex: 1;
}

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

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

.mission-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    border-radius: 8px;
}

.values-detail {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

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

.value-block {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.value-block p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.approach-split {
    display: flex;
    gap: 60px;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

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

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

.approach-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
    border-radius: 8px;
}

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

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

.team-intro {
    text-align: center;
    font-size: 17px;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-light);
}

.expertise-areas {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.expertise-item {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

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

.cta-content {
    text-align: center;
    color: var(--bg-white);
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--bg-white);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
}

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

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

.intro-text {
    flex: 1;
}

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

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

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

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
}

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

.service-detail-content > p {
    font-size: 17px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.service-detail-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: var(--primary-color);
}

.service-detail-content ul {
    margin-bottom: 30px;
    padding-left: 25px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.price-label {
    font-weight: 600;
    color: var(--text-dark);
}

.price-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-detail-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

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

.cta-box {
    text-align: center;
    padding: 60px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-box p {
    font-size: 17px;
    margin-bottom: 30px;
    color: var(--text-light);
}

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

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

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

.process-step {
    flex: 1;
    min-width: 220px;
    padding: 40px 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
    text-align: center;
}

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

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

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

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

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

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

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

.contact-info-block > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: var(--text-light);
}

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

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

.info-section p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-image-section {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    border-radius: 8px;
}

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

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

.location-info {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 17px;
    color: var(--text-light);
}

.location-details {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.detail-card {
    flex: 1;
    min-width: 250px;
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 8px;
    text-align: center;
}

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

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

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

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

.expectations-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    border-radius: 8px;
}

.expectations-content {
    flex: 1;
}

.expectations-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

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

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

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

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

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

.thanks-hero {
    padding: 100px 0 60px;
    background-color: var(--bg-light);
    text-align: center;
}

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

.thanks-lead {
    font-size: 20px;
    color: var(--text-light);
}

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

.thanks-split {
    display: flex;
    gap: 60px;
}

.thanks-left {
    flex: 2;
}

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

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

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

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

.thanks-right {
    flex: 1;
}

.info-box {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.info-box p {
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.cta-box-centered {
    text-align: center;
    padding: 60px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.cta-box-centered h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-box-centered p {
    font-size: 17px;
    margin-bottom: 30px;
    color: var(--text-light);
}

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

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
    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: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.legal-content a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .services-preview-split,
    .form-split,
    .trust-content-split,
    .about-story-split,
    .mission-split,
    .approach-split,
    .service-detail-split,
    .contact-layout,
    .expectations-split,
    .thanks-split {
        flex-direction: column;
    }

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

    .hero-left,
    .intro-content,
    .services-text,
    .form-left,
    .story-content,
    .mission-text,
    .approach-content,
    .service-detail-content {
        padding: 40px 30px;
    }

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

    .section-title,
    .services-text h2,
    .form-left h2,
    .trust-text h2,
    .mission-text h2,
    .approach-content h2,
    .team-section h2,
    .cta-content h2,
    .process-section h2,
    .contact-info-block h2,
    .location-section h2,
    .faq-contact h2,
    .thanks-left h2,
    .cta-box h2,
    .cta-box-centered h2 {
        font-size: 28px;
    }

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

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

    .value-block,
    .expertise-item,
    .detail-card,
    .faq-item {
        flex: 1 1 100%;
    }
}
