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

html {
    scroll-behavior: smooth;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.active {
    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;
    min-width: 300px;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #1d4ed8;
}

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

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

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-ad-label {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    background-color: #f3f4f6;
    border-radius: 3px;
}

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

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

.hero-full {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-wrapper 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(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-center {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 24px;
}

.hero-content-center h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 32px;
    font-weight: 300;
}

.btn-hero-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.story-section {
    padding: 80px 24px;
    background-color: #f9fafb;
}

.story-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.2;
    color: #111827;
}

.story-narrow p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #374151;
    line-height: 1.7;
}

.story-inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
    object-fit: cover;
}

.insight-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.insight-left {
    flex: 1;
    min-width: 300px;
}

.insight-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.insight-left p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #374151;
    line-height: 1.7;
}

.insight-list {
    list-style: none;
    margin-top: 32px;
}

.insight-list li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    font-size: 17px;
    color: #1f2937;
}

.insight-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 20px;
}

.insight-right {
    flex: 1;
    min-width: 300px;
    background-color: #f3f4f6;
}

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

.trust-section {
    padding: 80px 24px;
    background-color: #f9fafb;
}

.trust-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #111827;
}

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

.testimonial-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.products-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

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

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.products-header p {
    font-size: 19px;
    color: #6b7280;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.product-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 340px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #f3f4f6;
}

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

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

.product-info p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 80px 24px;
    background-color: #f9fafb;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.form-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cta-final {
    padding: 100px 24px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    text-align: center;
}

.cta-final-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-final p {
    font-size: 20px;
    color: #dbeafe;
    margin-bottom: 36px;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.disclaimer-section {
    padding: 60px 24px;
    background-color: #fef3c7;
}

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

.disclaimer-text {
    font-size: 15px;
    color: #78350f;
    line-height: 1.7;
}

.footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 60px 24px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

.page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 100px 24px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 20px;
    color: #dbeafe;
}

.about-content {
    padding: 80px 24px;
    background-color: #ffffff;
}

.about-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text-block {
    margin-bottom: 60px;
}

.about-text-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.about-text-block p {
    font-size: 18px;
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image-wrapper {
    margin: 60px 0;
    background-color: #f3f4f6;
}

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

.about-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 60px 0;
}

.about-split-left {
    flex: 1;
    min-width: 300px;
}

.about-split-left h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

.about-split-left p {
    font-size: 17px;
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-split-right {
    flex: 1;
    min-width: 300px;
    background-color: #f3f4f6;
}

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

.about-values {
    margin: 80px 0;
}

.about-values h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: #111827;
}

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

.value-item {
    flex: 1;
    min-width: 260px;
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 8px;
}

.value-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

.value-item p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.about-team {
    margin: 60px 0;
}

.about-team h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.about-team p {
    font-size: 18px;
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-final {
    margin-top: 80px;
    padding: 48px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.about-final h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.about-final p {
    font-size: 18px;
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-detailed {
    padding: 60px 24px;
    background-color: #ffffff;
}

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

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

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #f3f4f6;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.service-intro {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
}

.service-detail-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 28px 0 16px;
    color: #1f2937;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #374151;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 24px;
}

.service-pricing {
    background-color: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
}

.price-label {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.price-detail {
    font-size: 15px;
    color: #6b7280;
}

.btn-service-order {
    padding: 14px 32px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-order:hover {
    background-color: #1d4ed8;
}

.services-guarantee {
    padding: 80px 24px;
    background-color: #f9fafb;
}

.guarantee-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: #111827;
}

.guarantee-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.guarantee-item {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.guarantee-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

.guarantee-item p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.form-section-page {
    padding: 80px 24px;
    background-color: #f9fafb;
}

.contact-content {
    padding: 60px 24px;
    background-color: #ffffff;
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-block {
    margin-bottom: 60px;
}

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111827;
}

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

.contact-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.contact-item p {
    font-size: 17px;
    color: #374151;
    line-height: 1.7;
}

.contact-note {
    font-size: 15px;
    color: #6b7280;
    margin-top: 8px;
}

.contact-additional {
    background-color: #f9fafb;
    padding: 48px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.contact-additional h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.contact-additional p {
    font-size: 17px;
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-topics {
    margin-top: 32px;
}

.contact-topics h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.contact-topics ul {
    list-style: none;
}

.contact-topics ul li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #374151;
}

.contact-topics ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.thanks-section {
    padding: 100px 24px;
    background-color: #ffffff;
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #111827;
}

.thanks-content {
    text-align: left;
}

.thanks-main-text {
    font-size: 18px;
    color: #374151;
    margin-bottom: 40px;
    text-align: center;
}

.thanks-info-box {
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-info-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111827;
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    padding-left: 32px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #374151;
}

.thanks-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 18px;
}

.thanks-selected-service {
    background-color: #dbeafe;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 32px;
    text-align: center;
}

.thanks-selected-service p {
    font-size: 17px;
    color: #1e40af;
}

.thanks-contact-info {
    margin-bottom: 40px;
}

.thanks-contact-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111827;
}

.thanks-contact-info p {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
}

.thanks-email {
    font-weight: 600;
    color: #2563eb;
    margin-top: 12px;
}

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

.btn-thanks-primary {
    padding: 14px 32px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-thanks-secondary {
    padding: 14px 32px;
    background-color: #ffffff;
    color: #2563eb;
    border: 2px solid #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-thanks-secondary:hover {
    background-color: #f3f4f6;
}

.legal-content {
    padding: 60px 24px 80px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.legal-updated {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 24px 0 16px;
    color: #374151;
}

.legal-section p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-section a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #1d4ed8;
}

.legal-note {
    background-color: #fef3c7;
    padding: 16px;
    border-radius: 6px;
    font-size: 15px;
    color: #78350f;
    margin-top: 16px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table thead {
    background-color: #f3f4f6;
}

.cookies-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #1f2937;
    border-bottom: 2px solid #d1d5db;
}

.cookies-table td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

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

    .hero-subtitle {
        font-size: 18px;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .insight-container,
    .about-split,
    .service-detail-card {
        flex-direction: column;
    }

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

    .products-grid {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 100%;
        max-width: 400px;
    }

    .story-narrow h2,
    .about-text-block h2,
    .products-header h2 {
        font-size: 28px;
    }

    .cta-final h2 {
        font-size: 32px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }
}