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

:root {
    --charcoal: #222222;
    --gold: #D4AF37;
    --deep-blue: #0A1D37;
    --white: #F8F8F8;
    --light-gray: #E8E8E8;
    --dark-gray: #333333;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: var(--charcoal);
    color: var(--white);
    font-size: 18px;
    line-height: 1.75;
    padding-top: 80px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 62px;
    color: var(--white);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    margin-bottom: 20px;
}

h2 {
    font-size: 46px;
    color: var(--gold);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--charcoal);
    border-bottom: 2px solid var(--gold);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar {
    padding: 0.5rem 0;
}

.brand-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    margin-left: 25px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

.hero-block {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-block img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 29, 55, 0.7), rgba(212, 175, 55, 0.2));
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 10px;
}

.disclaimer-text {
    font-size: 18px !important;
    color: var(--gold) !important;
    font-weight: 700 !important;
    margin-top: 30px !important;
}

main {
    background-color: var(--charcoal);
}

section {
    padding: 180px 0;
    position: relative;
}

section:nth-child(even) {
    background-color: var(--deep-blue);
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.container {
    max-width: 1200px;
}

.daily-nutrition-intro,
.core-nutrients,
.selenium-sources,
.magnesium-sources,
.zinc-intake,
.vitamin-k-sources,
.routine-context,
.variety-meals,
.regular-consumption,
.scientific-facts,
.final-cta {
    animation: slideUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nutrients-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
}

.nutrients-table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(0, 0, 0, 0.3);
}

.nutrients-table th {
    background-color: var(--gold);
    color: var(--charcoal);
    padding: 20px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
}

.nutrients-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--white);
}

.nutrients-table tbody tr:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transition: background-color 0.3s ease;
}

.products-grid {
    margin-top: 50px;
    gap: 40px;
}

.product-card {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.4s ease;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid var(--gold);
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-gray);
}

.section-intro {
    font-size: 18px;
    color: var(--light-gray);
    margin-bottom: 30px;
}

.row.align-items-center {
    gap: 50px;
}

.row.align-items-center img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid var(--gold);
    animation: slideInRight 0.8s ease-out;
}

.row.flex-row-reverse img {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nutrient-list {
    list-style: none;
    margin: 20px 0;
}

.nutrient-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--light-gray);
    font-size: 16px;
    line-height: 1.6;
}

.nutrient-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 24px;
}

.context-list {
    list-style: none;
    margin: 20px 0;
}

.context-list li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    color: var(--light-gray);
    font-size: 16px;
    line-height: 1.8;
    border-left: 3px solid var(--gold);
    margin-bottom: 15px;
}

.context-list li::before {
    content: '✓';
    position: absolute;
    left: -2px;
    color: var(--gold);
    font-weight: 900;
    font-size: 20px;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fact-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(10, 29, 55, 0.3));
    padding: 30px;
    border-left: 4px solid var(--gold);
    border-radius: 4px;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
}

.fact-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.fact-box h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 20px;
}

.fact-box p {
    color: var(--light-gray);
    font-size: 16px;
    line-height: 1.6;
}

.cta-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 35px;
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: var(--gold);
    color: var(--charcoal);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

footer {
    background-color: #1a1a1a;
    border-top: 2px solid var(--gold);
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-content {
    margin-bottom: 50px;
}

.footer-content h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 22px;
}

.footer-content p {
    color: var(--light-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-info {
    background-color: rgba(212, 175, 55, 0.1);
    padding: 25px;
    border-radius: 4px;
    margin: 30px 0;
    text-align: center;
}

.footer-info p {
    color: var(--light-gray);
    font-size: 14px;
    margin: 8px 0;
}

.footer-info strong {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--charcoal);
    border-top: 2px solid var(--gold);
    padding: 20px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease-out;
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    color: var(--light-gray);
    font-size: 14px;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-accept {
    background-color: var(--gold);
    color: var(--charcoal);
}

.btn-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-reject {
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-reject:hover {
    background-color: var(--gold);
    color: var(--charcoal);
}

.btn-learn {
    background-color: transparent;
    border: 1px solid var(--light-gray);
    color: var(--light-gray);
}

.btn-learn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.policy-page {
    background-color: var(--charcoal);
    color: var(--white);
}

.policy-header {
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 2px solid var(--gold);
}

.policy-content {
    padding: 60px 0;
}

.policy-content h2 {
    margin-top: 50px;
    margin-bottom: 25px;
}

.policy-content p {
    color: var(--light-gray);
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
}

.policy-content ul,
.policy-content ol {
    color: var(--light-gray);
    margin: 20px 0 20px 40px;
    font-size: 16px;
    line-height: 1.8;
}

.policy-content li {
    margin-bottom: 10px;
}

.policy-content strong {
    color: var(--gold);
}

.disclaimer-section {
    background-color: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--gold);
    padding: 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.page-content {
    padding: 60px 0;
}

.page-intro {
    font-size: 18px;
    color: var(--light-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.faq-container {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.faq-question {
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '▼';
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    color: var(--light-gray);
    margin-top: 15px;
    line-height: 1.8;
    font-size: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

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

.form-group label {
    display: block;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold);
    color: var(--white);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-disclaimer {
    background-color: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold);
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--light-gray);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--gold);
    color: var(--charcoal);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.thank-you-message {
    text-align: center;
    padding: 80px 0;
}

.thank-you-message h1 {
    color: var(--gold);
    margin-bottom: 30px;
}

.thank-you-message p {
    font-size: 18px;
    color: var(--light-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.back-home-btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--gold);
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.back-home-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 20px;
    }

    body {
        font-size: 16px;
    }

    section {
        padding: 100px 0;
    }

    .products-grid {
        gap: 20px;
    }

    .row.align-items-center {
        gap: 30px;
    }

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

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

    .cta-links {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .contact-form {
        margin: 30px 0;
        padding: 25px;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    body {
        font-size: 14px;
        padding-top: 70px;
    }

    section {
        padding: 60px 0;
    }

    .hero-block {
        height: 60vh;
    }

    .footer-content {
        text-align: center;
    }

    .footer-content {
        margin-bottom: 30px;
    }

    .container {
        padding: 0 15px;
    }
}
