* {
    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;
}

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

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

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

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

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

.nav-links a:hover {
    color: #3498db;
}

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

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #2c3e50;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

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

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #ecf0f1;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

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

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

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

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

.problem-amplification {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.split-image {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
    border-radius: 12px;
    overflow: hidden;
}

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

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

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

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

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

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

.centered-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.lead-text {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #ecf0f1;
}

.lead-text a {
    color: #3498db;
    text-decoration: none;
}

.lead-text a:hover {
    text-decoration: underline;
}

.insight-cards {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: #34495e;
    border-radius: 12px;
    text-align: left;
}

.insight-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.insight-card p {
    font-size: 1rem;
    color: #ecf0f1;
}

.insight-card a {
    color: #3498db;
    text-decoration: none;
}

.trust-building {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.trust-content {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.trust-content > p {
    font-size: 1.3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    color: #34495e;
}

.feature-grid {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.feature-item h4 {
    font-size: 1.6rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.feature-item p {
    font-size: 1rem;
    margin: 0 1.5rem 1.5rem;
    color: #34495e;
}

.testimonials-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

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

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

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 8px;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #34495e;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #2c3e50;
}

.benefits-reveal {
    padding: 6rem 2rem;
    background-color: #ecf0f1;
}

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

.benefits-wrapper h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefit-block {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3498db;
    min-width: 80px;
}

.benefit-block h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-block p {
    font-size: 1.1rem;
    color: #34495e;
}

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

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

.products-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.products-intro {
    font-size: 1.3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #34495e;
}

.product-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.product-card {
    flex: 0 0 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

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

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

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

.product-card a {
    color: #3498db;
    text-decoration: none;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 1.5rem 1.5rem 1rem;
}

.select-product {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-product:hover {
    background-color: #2980b9;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

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

.form-intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #34495e;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #f39c12;
    border-radius: 8px;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #34495e;
    line-height: 1.8;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

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

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

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

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

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references li {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.footer-references a {
    color: #3498db;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

.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.15);
    z-index: 9999;
    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;
    min-width: 300px;
    font-size: 0.95rem;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.page-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.4rem;
    color: #ecf0f1;
}

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

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.story-image {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
    border-radius: 12px;
    overflow: hidden;
}

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

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.mission-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.mission-statement {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    font-size: 1rem;
    color: #34495e;
}

.approach-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

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

.approach-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 1rem;
}

.approach-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.approach-step p {
    font-size: 1rem;
    color: #34495e;
}

.team-commitment {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.team-commitment img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.commitment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    background-color: rgba(44, 62, 80, 0.7);
}

.commitment-overlay h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.commitment-overlay p {
    font-size: 1.3rem;
    color: #ecf0f1;
    max-width: 800px;
    margin-bottom: 1rem;
}

.services-intro {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.intro-text {
    font-size: 1.3rem;
    text-align: center;
    max-width: 900px;
    color: #34495e;
}

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

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card-large {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    flex-wrap: wrap;
}

.service-image {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
    border-radius: 12px;
    overflow: hidden;
}

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

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

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

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

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: #34495e;
}

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 1.5rem 0;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #2980b9;
}

.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.4rem;
    color: #ecf0f1;
    margin-bottom: 2.5rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background-color: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

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

.contact-info > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #34495e;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-item p {
    font-size: 1rem;
    color: #34495e;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
    border-radius: 12px;
    overflow: hidden;
}

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

.info-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.info-content {
    max-width: 1200px;
    margin: 0 auto;
}

.info-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

.info-card p {
    font-size: 1rem;
    color: #34495e;
}

.thanks-section {
    padding: 8rem 2rem;
    background-color: #f8f9fa;
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.thanks-product {
    padding: 1.5rem;
    margin: 2rem 0;
    background-color: #ecf0f1;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.thanks-info {
    font-size: 1rem;
    margin-bottom: 3rem;
    color: #7f8c8d;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
}

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

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

.legal-page {
    padding: 4rem 2rem 6rem;
    background-color: #f8f9fa;
}

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

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

.legal-intro {
    font-size: 1rem;
    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: 2rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

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

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

.legal-container li {
    margin-bottom: 0.5rem;
    color: #34495e;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #34495e;
}

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .split-layout,
    .content-wrapper {
        flex-direction: column;
    }

    .product-card {
        flex: 0 0 100%;
    }

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

    .thanks-container h1 {
        font-size: 2rem;
    }
}
