/*
 * NobleCum - Premium Male Enhancement Supplements
 * Modern, professional styling with teal and gold accent colors
 */

/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary: #0B7F8C;     /* Teal */
    --primary-light: #3AA6B2; /* Light Teal */
    --secondary: #D4AF37;   /* Gold */
    --secondary-light: #E9CA66; /* Light Gold */
    --dark: #292C33;        /* Dark Slate */
    --gray: #5C6370;        /* Medium Gray */
    --light-gray: #F5F5F7;  /* Light Gray */
    --white: #FFFFFF;       /* White */
    
    /* Typography */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Raleway', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--dark);
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

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

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

.highlight {
    color: var(--secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 1.5px;
}

.section-header p {
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 1.1rem;
}

section {
    padding: var(--section-padding);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.primary-btn {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.primary-btn:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 127, 140, 0.2);
}

.secondary-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.secondary-btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.outline-btn {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.outline-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 127, 140, 0.2);
}

.text-btn {
    background: none;
    color: var(--primary);
    padding: 0;
    text-transform: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
}

.text-btn::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.text-btn:hover {
    color: var(--secondary);
}

.text-btn:hover::after {
    transform: translateX(5px);
}

.btn-nav {
    background-color: var(--secondary);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-nav:hover {
    background-color: var(--secondary-light);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header and Navigation */
header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    margin-left: 15px;
    margin-bottom: 0;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark);
    font-weight: 500;
    font-family: var(--heading-font);
    font-size: 0.9rem;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(11, 127, 140, 0.9) 0%, rgba(41, 44, 51, 0.9) 100%), url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

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

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--white);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.badge-icon {
    font-size: 1.8rem;
    background-color: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.badge:hover .badge-icon {
    transform: scale(1.1);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    opacity: 0.9;
}

/* Products Section */
.products {
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--dark);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 10;
}

.product-image {
    height: 200px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.product-image-1 {
    background-image: url('https://via.placeholder.com/400x200?text=Volume+Max');
}

.product-image-2 {
    background-image: url('https://via.placeholder.com/400x200?text=Performance+Plus');
}

.product-image-3 {
    background-image: url('https://via.placeholder.com/400x200?text=Complete+System');
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-subtitle {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0 20px;
}

.product-features span {
    background-color: rgba(11, 127, 140, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: var(--heading-font);
}

/* Benefits Section */
.benefits {
    background-color: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(11, 127, 140, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: var(--primary);
    transform: scale(1.1);
}

.benefit-icon-1::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230B7F8C'%3E%3Cpath d='M14.5 13.5h-1.5v-1.5a1 1 0 00-2 0v1.5h-1.5a1 1 0 000 2h1.5v1.5a1 1 0 002 0v-1.5h1.5a1 1 0 000-2zm4.5-12H5a3 3 0 00-3 3v14a3 3 0 003 3h14a3 3 0 003-3v-14a3 3 0 00-3-3zm1 17a1 1 0 01-1 1H5a1 1 0 01-1-1v-14a1 1 0 011-1h14a1 1 0 011 1v14z'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
}

.benefit-icon-2::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230B7F8C'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-5 15h-2v-5h-2v5H9V9h2v1c.7-.7 1.5-1 2.5-1 1 0 1.7.3 2.2.9.5.6.8 1.4.8 2.4v4.7z'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
}

.benefit-icon-3::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230B7F8C'%3E%3Cpath d='M12 2c-5.33 0-8 2.67-8 8v10h16V10c0-5.33-2.67-8-8-8zm0 18c-1.1 0-2-.9-2-2h4c0 1.1-.9 2-2 2zm7-5h-14v-5c0-3.87 1.79-6 7-6s7 2.13 7 6v5z'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
}

.benefit-icon-4::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230B7F8C'%3E%3Cpath d='M12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm3.71 12.29L11 9.59V15c0 .55-.45 1-1 1s-1-.45-1-1V9.59l-4.71 4.7c-.39.39-1.02.39-1.41 0a.996.996 0 010-1.41l6.41-6.41c.39-.39 1.02-.39 1.41 0l6.41 6.41c.39.39.39 1.02 0 1.41-.38.38-1.02.38-1.41 0z'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
}

.benefit-card:hover .benefit-icon-1::before,
.benefit-card:hover .benefit-icon-2::before,
.benefit-card:hover .benefit-icon-3::before,
.benefit-card:hover .benefit-icon-4::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3z'/%3E%3C/svg%3E");
}

/* Science Section */
.science {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.science::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(11, 127, 140, 0.05);
    z-index: 0;
}

.science::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.05);
    z-index: 0;
}

.science .container {
    position: relative;
    z-index: 1;
}

.science-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.science-image {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background: url('https://via.placeholder.com/600x400?text=Scientific+Research') center/cover no-repeat;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.science-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 127, 140, 0.6) 0%, rgba(212, 175, 55, 0.4) 100%);
    opacity: 0.3;
}

.science-info h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.ingredient-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.ingredient {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ingredient:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background-color: rgba(11, 127, 140, 0.05);
}

.ingredient h4 {
    color: var(--secondary);
    margin-bottom: 5px;
}

.ingredient p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--dark);
    color: var(--white);
    position: relative;
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header p {
    color: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}

.testimonial-rating {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-initial {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    font-family: var(--heading-font);
}

.author-info h4 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 1rem;
}

.author-info p {
    color: var(--secondary);
    font-size: 0.8rem;
    margin-bottom: 0;
}

.satisfaction-guarantee {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 2.5rem;
    color: var(--secondary);
}

.guarantee-content h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.guarantee-content p {
    color: var(--light-gray);
    margin-bottom: 0;
    font-size: 1rem;
}

/* Resources Section */
.resources {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.resource-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resource-column a {
    background-color: var(--white);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    color: var(--gray);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.resource-column a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, var(--primary), transparent);
    opacity: 0.1;
    transition: height 0.3s ease;
    z-index: -1;
}

.resource-column a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--primary);
}

.resource-column a:hover::before {
    height: 100%;
}

/* Order Section */
.order {
    background-color: var(--white);
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.package-selector,
.subscription-options {
    margin-bottom: 30px;
}

.package-selector h3,
.subscription-options h3,
.order-form h3 {
    margin-bottom: 20px;
}

.packages,
.subscriptions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.package-option input,
.subscription-option input {
    display: none;
}

.package-option label,
.subscription-option label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.package-option input:checked + label,
.subscription-option input:checked + label {
    border-color: var(--primary);
    background-color: rgba(11, 127, 140, 0.05);
    box-shadow: 0 5px 15px rgba(11, 127, 140, 0.1);
}

.package-option label::before,
.subscription-option label::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--gray);
    margin-right: 15px;
    transition: all 0.3s ease;
}

.package-option input:checked + label::before,
.subscription-option input:checked + label::before {
    border-color: var(--primary);
    background-color: var(--primary);
    box-shadow: inset 0 0 0 4px var(--white);
}

.package-name,
.subscription-name {
    font-weight: 500;
    flex-grow: 1;
}

.package-price {
    font-weight: 700;
    color: var(--secondary);
    margin-right: 15px;
}

.package-best-value,
.subscription-save {
    font-size: 0.75rem;
    background-color: var(--secondary);
    color: var(--dark);
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 10px;
}

.order-form {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    font-family: var(--body-font);
    transition: border 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.secure-icon {
    font-size: 1.2rem;
    color: var(--primary);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.payment-icon {
    font-size: 1.5rem;
    color: var(--gray);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo svg {
    margin-bottom: 20px;
}

.footer-logo p {
    color: var(--white);
    margin-bottom: 5px;
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 600;
}

.tagline {
    font-size: 0.9rem;
    color: var(--primary-light);
    font-family: var(--body-font);
    font-weight: 400;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h3 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

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

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

.footer-column ul li a {
    color: var(--light-gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.footer-column ul li a:hover {
    color: var(--primary-light);
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 0;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--light-gray);
    font-size: 0.8rem;
    opacity: 0.7;
}

.legal-links a:hover {
    color: var(--primary-light);
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h2 {
        font-size: 3rem;
    }
    
    .products-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .science-content,
    .order-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .science-image {
        height: 300px;
        order: -1;
    }
    
    .resource-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        height: 24px;
        width: 30px;
        position: relative;
    }
    
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        height: 2px;
        width: 30px;
        background-color: var(--dark);
        position: absolute;
        transition: all 0.3s ease;
    }
    
    .nav-toggle-label span {
        top: 11px;
    }
    
    .nav-toggle-label span::before {
        content: '';
        top: -8px;
    }
    
    .nav-toggle-label span::after {
        content: '';
        top: 8px;
    }
    
    .nav-toggle:checked + .nav-toggle-label span {
        background-color: transparent;
    }
    
    .nav-toggle:checked + .nav-toggle-label span::before {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle:checked + .nav-toggle-label span::after {
        transform: rotate(-45deg) translate(7px, -8px);
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--white);
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        z-index: 999;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-toggle:checked ~ nav {
        height: auto;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px 0;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 80%;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .satisfaction-guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ingredient-list {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .products-grid,
    .benefits-grid,
    .resource-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}
