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

.top-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: #27ae60;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.85) 0%, rgba(44, 62, 80, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #27ae60;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.story-intro {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.narrow-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.narrow-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.problem-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.split-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.split-content {
    flex: 1;
}

.split-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.problem-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.problem-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
}

.problem-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.split-content p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.split-content a {
    color: #27ae60;
    text-decoration: none;
}

.split-content a:hover {
    text-decoration: underline;
}

.solution-reveal {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
}

.solution-reveal h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.solution-reveal p {
    color: #ffffff;
    font-size: 1.15rem;
}

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

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

.insight-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card-image-container {
    width: 100%;
    height: 250px;
    background-color: #ecf0f1;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.insight-card h4 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
    color: #2c3e50;
}

.insight-card p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #34495e;
    font-size: 1rem;
}

.science-section {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.science-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.science-section a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 500;
}

.science-section a:hover {
    text-decoration: underline;
}

.testimonial-inline {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-container blockquote {
    flex: 1;
    min-width: 300px;
    font-size: 1.15rem;
    font-style: italic;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.testimonial-container cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #27ae60;
}

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.product-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.product-card {
    flex: 1;
    min-width: 320px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-image-container {
    width: 100%;
    height: 280px;
    background-color: #ecf0f1;
}

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

.product-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
    color: #2c3e50;
}

.product-card p {
    padding: 0 1.5rem;
    color: #34495e;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    position: relative;
    font-size: 0.95rem;
    color: #34495e;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.product-price {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.product-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
}

.select-service-btn {
    margin: 0 1.5rem 1.5rem 1.5rem;
    padding: 0.9rem 1.5rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.form-section {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-container p {
    margin-bottom: 2rem;
    color: #7f8c8d;
}

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.guarantee-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.guarantee-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem 1rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

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

.footer-column p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.references-list {
    padding-left: 1.2rem;
}

.references-list li {
    margin-bottom: 0.6rem;
}

.references-list a {
    color: #bdc3c7;
    font-size: 0.9rem;
    text-decoration: none;
}

.references-list a:hover {
    color: #27ae60;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-disclaimer strong {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #27ae60;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #6c7a7d;
}

.page-hero {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
}

.about-story {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.asymmetric-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.content-block-wide {
    flex: 2;
}

.content-block-wide h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.content-block-wide p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
    line-height: 1.7;
}

.image-block-narrow {
    flex: 1;
    background-color: #ecf0f1;
}

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

.values-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.centered-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.centered-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

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

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.value-item p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.process-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.split-reverse-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.process-content {
    flex: 1;
}

.process-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.process-steps {
    padding-left: 1.5rem;
}

.process-steps li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.6;
}

.process-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.team-philosophy {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
}

.narrow-centered {
    max-width: 800px;
    margin: 0 auto;
}

.narrow-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.narrow-centered p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
    line-height: 1.7;
}

.mission-statement {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

.wide-container {
    max-width: 1000px;
    margin: 0 auto;
}

.large-quote {
    text-align: center;
}

.large-quote p {
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.6;
    color: #ffffff;
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.service-layout-left,
.service-layout-right {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-layout-right {
    flex-direction: row-reverse;
}

.service-image-large {
    flex: 1;
    background-color: #ecf0f1;
}

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

.service-info {
    flex: 1;
    padding: 2.5rem;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-description {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.7;
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-info ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
    font-size: 1rem;
    color: #34495e;
}

.service-info ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.price-tag {
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: #7f8c8d;
    margin-right: 0.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.cta-bottom-section {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
    text-align: center;
}

.cta-bottom-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-bottom-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #7f8c8d;
}

.cta-button-large {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, background-color 0.3s;
}

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

.contact-content {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #27ae60;
}

.contact-text {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.7;
}

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

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

.contact-additional {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-message {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #34495e;
    line-height: 1.7;
}

.order-info {
    margin-bottom: 2rem;
}

.selected-service {
    font-size: 1.1rem;
    color: #2c3e50;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, background-color 0.3s;
}

.btn-primary {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

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

.next-steps {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

.steps-container h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.step-item p {
    font-size: 0.95rem;
    color: #34495e;
    line-height: 1.6;
}

.legal-content {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.last-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #27ae60;
}

.legal-container p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.7;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.7rem;
    color: #34495e;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .split-layout,
    .split-reverse-layout,
    .asymmetric-layout,
    .contact-layout,
    .service-layout-left,
    .service-layout-right {
        flex-direction: column;
    }

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

    .product-cards,
    .card-grid,
    .values-grid,
    .steps-grid {
        flex-direction: column;
    }

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