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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b9d7c;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9f6;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: #ffffff;
    padding: 24px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.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;
    min-width: 300px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-primary, .btn-secondary {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.split-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 520px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--secondary-color);
}

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

.story-section {
    display: flex;
    min-height: 500px;
}

.story-left {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.story-right {
    flex: 1;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-right h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

.services-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.services-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 320px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 24px 20px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 24px;
}

.service-card .select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card .select-service:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
}

.trust-section {
    display: flex;
}

.trust-content {
    flex: 1;
    padding: 80px 64px;
    background-color: var(--bg-light);
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 48px;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

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

.testimonial cite {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

.trust-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--secondary-color);
}

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

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

.form-container {
    max-width: 680px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 16px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 48px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.science-section {
    padding: 80px 48px;
    background-color: var(--bg-light);
    text-align: center;
}

.science-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.science-section > p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 48px;
}

.science-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.science-references {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
}

.science-references h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.science-references ol {
    padding-left: 24px;
}

.science-references li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.science-references a {
    color: var(--primary-color);
}

.split-footer {
    display: flex;
    justify-content: space-between;
    padding: 64px 48px 32px;
    background-color: var(--text-dark);
    color: #ffffff;
    flex-wrap: wrap;
    gap: 48px;
}

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

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p,
.footer-column a {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

.disclaimer {
    padding: 32px 48px;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-hero-split {
    display: flex;
    min-height: 400px;
    background-color: var(--bg-light);
}

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

.page-hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.page-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 480px;
}

.page-hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--secondary-color);
}

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

.detailed-services {
    padding: 48px 0;
}

.service-detail-split {
    display: flex;
    min-height: 480px;
    margin-bottom: 48px;
}

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

.service-detail-content {
    flex: 1;
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-detail-content .service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

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

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

.service-detail-content li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

.service-detail-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.service-detail-content .select-service {
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-detail-content .select-service:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

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

.story-content {
    max-width: 820px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.team-split {
    display: flex;
}

.team-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.team-content {
    flex: 1;
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.team-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

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

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

.values-section h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 32px);
    min-width: 300px;
    background-color: var(--bg-light);
    padding: 36px;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.approach-split {
    display: flex;
}

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

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.approach-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

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

.credentials-section h2 {
    font-size: 38px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

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

.credentials-list {
    max-width: 800px;
    margin: 0 auto 32px;
    padding-left: 32px;
}

.credentials-list li {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 12px;
}

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

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.cta-about p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
}

.cta-about .cta-button {
    background-color: #ffffff;
    color: var(--primary-color);
}

.cta-about .cta-button:hover {
    background-color: var(--bg-light);
}

.contact-info-split {
    display: flex;
}

.contact-details {
    flex: 1;
    padding: 80px 64px;
    background-color: var(--bg-white);
}

.contact-details h2 {
    font-size: 38px;
    margin-bottom: 48px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-item {
    margin-bottom: 36px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.contact-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.location-section {
    padding: 80px 48px;
    background-color: var(--bg-light);
    text-align: center;
}

.location-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.location-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 20px;
}

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

.faq-section h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

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

.faq-item {
    flex: 1 1 calc(50% - 32px);
    min-width: 300px;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.business-model-section {
    padding: 80px 48px;
    background-color: var(--bg-light);
}

.business-model-section h2 {
    font-size: 38px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

.business-model-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 24px;
}

.thanks-section {
    padding: 120px 48px;
    background-color: var(--bg-light);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.service-confirmation {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 48px;
}

.selected-service {
    font-size: 17px;
    color: var(--text-dark);
}

.next-steps {
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 12px;
    text-align: left;
    margin-bottom: 48px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--text-dark);
    text-align: center;
    font-weight: 700;
}

.next-steps ol {
    padding-left: 32px;
}

.next-steps li {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 16px;
}

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

.thanks-actions .btn-primary,
.thanks-actions .btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    display: inline-block;
}

.thanks-actions .btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.thanks-actions .btn-secondary:hover {
    background-color: var(--bg-light);
}

.additional-info {
    padding: 80px 48px;
    background-color: var(--bg-white);
}

.additional-info h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

.info-cards {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.info-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-page {
    padding: 80px 48px;
    background-color: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-container h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

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

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

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

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .story-section,
    .trust-section,
    .page-hero-split,
    .service-detail-split,
    .team-split,
    .approach-split,
    .contact-info-split {
        flex-direction: column;
    }

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

    .hero-content,
    .story-right,
    .trust-content,
    .page-hero-content,
    .service-detail-content,
    .team-content,
    .approach-content,
    .contact-details {
        padding: 48px 32px;
    }

    .hero-image,
    .story-left,
    .trust-image,
    .page-hero-image,
    .service-detail-image,
    .team-image,
    .approach-image,
    .contact-image {
        min-height: 300px;
    }

    .split-header {
        flex-direction: column;
        gap: 20px;
        padding: 20px 24px;
    }

    .header-right {
        flex-direction: column;
        gap: 16px;
    }

    .services-grid,
    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

    .service-card,
    .value-card,
    .faq-item {
        min-width: 100%;
    }
}

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

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        flex: 1;
    }

    .info-cards {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

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