* {
    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: #333;
    background-color: #fff;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    background-color: #ff6b35;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #28a745;
    color: #fff;
}

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

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

.btn-cookie-reject:hover {
    background-color: #fff;
    color: #2c2c2c;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

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

.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-text {
    max-width: 900px;
    text-align: center;
    color: #fff;
    padding: 0 2rem;
}

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

.hero-text p {
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0.95;
}

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

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

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.story-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.visual-break {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

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

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

.caption-overlay {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    right: 3rem;
    background-color: rgba(255,255,255,0.95);
    padding: 2rem;
    border-left: 5px solid #ff6b35;
}

.caption-overlay p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
}

.insight-reveal {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.insight-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.insight-container p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.citation {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    margin: 0 0.2rem;
}

.citation:hover {
    text-decoration: underline;
}

.products-showcase {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.products-showcase h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

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

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.product-image-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
}

.product-card p {
    padding: 0 1.5rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.product-price {
    padding: 1rem 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745;
}

.btn-select-product {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem;
    background-color: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-product:hover {
    background-color: #e55a2b;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background-color: #fff;
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #ff6b35;
    border-radius: 4px;
}

.testimonial-item p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #555;
    font-style: normal;
}

.benefits-section {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
}

.benefits-visual-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.benefit-block {
    flex: 1 1 calc(33.333% - 3rem);
    min-width: 250px;
}

.benefit-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.benefit-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ddd;
}

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

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

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fff8e1;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

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

.footer-column {
    flex: 1 1 250px;
}

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

.footer-column p {
    color: #aaa;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.footer-references ol {
    margin-left: 1.5rem;
    color: #aaa;
}

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

.footer-references a {
    color: #6c9bd1;
    text-decoration: none;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    color: #888;
}

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

.thanks-container {
    max-width: 700px;
    background-color: #fff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #28a745;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.thanks-detail {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.thanks-info {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ff6b35;
    color: #fff;
}

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

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

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

.next-steps {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.steps-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.step-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    text-align: center;
}

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

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.step-item p {
    color: #666;
    line-height: 1.7;
}

.about-hero {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.story-text {
    flex: 1 1 500px;
}

.story-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1 1 400px;
    background-color: #f0f0f0;
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #ff6b35;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.team-approach {
    padding: 5rem 2rem;
    background-color: #fff;
}

.approach-container {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.approach-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.approach-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.approach-visual {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #e9ecef;
}

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

.commitment-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.commitment-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.commitment-blocks {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.commitment-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.commitment-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.commitment-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.services-header {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    text-align: center;
}

.services-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.products-catalog {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.catalog-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.product-detail-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-wrap: wrap;
}

.product-detail-image {
    flex: 1 1 400px;
    min-height: 350px;
    background-color: #e9ecef;
}

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

.product-detail-content {
    flex: 1 1 500px;
    padding: 3rem;
}

.product-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.product-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.btn-order {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #ff6b35;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-order:hover {
    background-color: #e55a2b;
}

.quality-guarantee {
    padding: 4rem 2rem;
    background-color: #fff;
}

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

.guarantee-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.guarantee-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.contact-header {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

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

.contact-info-card {
    flex: 1 1 450px;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.contact-info-card h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ff6b35;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.contact-visual {
    flex: 1 1 400px;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-details-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.details-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.help-options {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.help-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.help-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.help-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.faq-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.cta-contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: #fff;
}

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

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-primary-large {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #fff;
    color: #ff6b35;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #1a1a1a;
    color: #fff;
}

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

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

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

.legal-updated {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

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

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

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

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

.legal-container li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

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

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

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.cookies-table td {
    color: #555;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

    .products-grid {
        flex-direction: column;
    }

    .product-card {
        min-width: 100%;
    }

    .testimonial-blocks,
    .benefits-visual-layout,
    .steps-grid,
    .values-grid,
    .commitment-blocks,
    .help-options {
        flex-direction: column;
    }

    .product-detail-card {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
