* {
    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.6;
    color: #2c3e50;
    background-color: #ffffff;
}

a {
    color: #3a7ca5;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2d5f7e;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

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

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #ffffff;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.main-nav a:hover {
    opacity: 0.8;
    color: #ffffff;
}

.ad-disclosure {
    color: #a8c5d9;
    font-size: 12px;
    font-style: italic;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f8fafb;
}

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

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-left p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3a7ca5;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #2d5f7e;
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #3a7ca5;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #3a7ca5;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #3a7ca5;
    color: #ffffff;
}

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 24px;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    color: #5a6c7d;
    text-align: center;
}

.benefits-split {
    padding: 0;
}

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

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

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

.split-content-left-wide {
    flex: 1.5;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-right-wide {
    flex: 1.5;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.split-image-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.split-image-left-narrow {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.split-image-right-narrow {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.split-container h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 24px;
}

.split-container p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.benefit-list {
    list-style: none;
    margin-top: 24px;
}

.benefit-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: #5a6c7d;
    font-size: 16px;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3a7ca5;
    font-weight: 700;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8fafb;
}

.services-preview h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 60px;
    text-align: center;
}

.services-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 220px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a3a52;
    margin: 24px 24px 12px;
}

.service-card p {
    font-size: 15px;
    color: #5a6c7d;
    margin: 0 24px 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #3a7ca5;
    margin: 0 24px 16px;
}

.service-link {
    display: inline-block;
    margin: 0 24px 24px;
    color: #3a7ca5;
    font-weight: 600;
    transition: color 0.3s ease;
    cursor: pointer;
}

.service-link:hover {
    color: #2d5f7e;
}

.process-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 60px;
    text-align: center;
}

.process-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #3a7ca5;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    color: #5a6c7d;
}

.cta-section {
    padding: 80px 0;
    background-color: #f8fafb;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 20px;
    text-align: center;
}

.cta-section > .container-narrow > p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 250px;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3a7ca5;
}

.btn-submit {
    padding: 16px 48px;
    background-color: #3a7ca5;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #2d5f7e;
    transform: translateY(-2px);
}

.ingredients-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.ingredients-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 24px;
    text-align: center;
}

.ingredients-section > .container > p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 48px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.components-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.component-item {
    padding: 28px;
    background-color: #f8fafb;
    border-radius: 8px;
    border-left: 4px solid #3a7ca5;
}

.component-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 12px;
}

.component-item p {
    font-size: 16px;
    color: #5a6c7d;
}

.component-item a {
    color: #3a7ca5;
    font-weight: 600;
}

.main-footer {
    background-color: #1a3a52;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    color: #a8c5d9;
}

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

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

.footer-col ul li a {
    color: #a8c5d9;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-references {
    margin-bottom: 40px;
}

.footer-references h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-references ol {
    padding-left: 20px;
}

.footer-references ol li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #a8c5d9;
}

.footer-references ol li a {
    color: #a8c5d9;
    text-decoration: underline;
}

.footer-references ol li a:hover {
    color: #ffffff;
}

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

.footer-disclaimer p {
    font-size: 13px;
    color: #a8c5d9;
    line-height: 1.6;
}

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

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}

.cookie-content p a {
    color: #a8c5d9;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #3a7ca5;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2d5f7e;
}

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

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

.page-header {
    padding: 80px 0;
    background-color: #f8fafb;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: #5a6c7d;
}

.services-detail {
    padding: 0;
}

.services-detail.alt-layout {
    background-color: #f8fafb;
}

.service-details-list {
    list-style: none;
    margin: 24px 0;
}

.service-details-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #5a6c7d;
    font-size: 16px;
}

.service-details-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3a7ca5;
    font-weight: 700;
    font-size: 20px;
}

.pricing-box {
    margin-top: 32px;
    padding: 24px;
    background-color: #f8fafb;
    border-radius: 8px;
    border: 2px solid #3a7ca5;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    color: #5a6c7d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #3a7ca5;
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: #5a6c7d;
    margin: 0;
}

.cta-section-simple {
    padding: 80px 0;
    background-color: #1a3a52;
    text-align: center;
}

.cta-section-simple h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-section-simple p {
    font-size: 18px;
    color: #a8c5d9;
    margin-bottom: 32px;
}

.about-intro-split {
    padding: 0;
}

.values-section {
    padding: 80px 0;
    background-color: #f8fafb;
}

.values-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 60px;
    text-align: center;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 15px;
    color: #5a6c7d;
}

.expertise-split {
    padding: 0;
}

.region-section {
    padding: 80px 0;
    background-color: #f8fafb;
}

.region-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 24px;
}

.region-section p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.region-list {
    list-style: none;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.region-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: #5a6c7d;
    font-size: 16px;
}

.region-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #3a7ca5;
    font-weight: 700;
}

.approach-split {
    padding: 0;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonials-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 60px;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 32px;
    background-color: #f8fafb;
    border-radius: 8px;
    border-left: 4px solid #3a7ca5;
}

.testimonial-card p {
    font-size: 16px;
    color: #5a6c7d;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-card cite {
    font-size: 14px;
    color: #3a7ca5;
    font-weight: 600;
    font-style: normal;
}

.contact-main {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 32px;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 8px;
}

.contact-detail p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-note {
    padding: 20px;
    background-color: #f8fafb;
    border-radius: 6px;
    margin-top: 32px;
}

.contact-note p {
    font-size: 15px;
    color: #5a6c7d;
    margin: 0;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta {
    padding: 60px 0;
    background-color: #f8fafb;
    text-align: center;
}

.contact-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 12px;
}

.contact-cta p {
    font-size: 17px;
    color: #5a6c7d;
}

.contact-cta a {
    color: #3a7ca5;
    font-weight: 600;
}

.thanks-section {
    padding: 120px 0;
    background-color: #f8fafb;
}

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

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 24px;
}

.service-confirmation {
    padding: 20px;
    background-color: #e8f4f8;
    border-radius: 6px;
    margin: 32px 0;
    color: #2d5f7e;
    font-weight: 600;
}

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

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a3a52;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-page h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-page p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
    margin: 16px 0;
    padding-left: 40px;
}

.legal-page li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 8px;
    line-height: 1.8;
}

.legal-page a {
    color: #3a7ca5;
    text-decoration: underline;
}

.legal-note {
    margin-top: 40px;
    font-size: 14px;
    color: #5a6c7d;
    font-style: italic;
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #d1d9e0;
}

.cookie-table th {
    background-color: #f8fafb;
    font-weight: 700;
    color: #1a3a52;
}

.cookie-table td {
    color: #5a6c7d;
}

blockquote.testimonial {
    margin: 24px 0;
    padding: 24px;
    background-color: #f8fafb;
    border-left: 4px solid #3a7ca5;
    font-style: italic;
    color: #5a6c7d;
}

blockquote.testimonial cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    color: #3a7ca5;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

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

    .main-nav {
        gap: 20px;
    }

    .ad-disclosure {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 10px;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .services-grid,
    .process-steps,
    .values-grid,
    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-layout {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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