/* Reset and Base Styles */
/* Using universal reset for consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f8d; /* Main brand color - healthcare blue */
    --secondary-color: #4a90a4;
    --accent-color: #6bb8c7;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease; /* standard transition timing */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Global heading styles to prevent edge sticking */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
}

/* Ensure buttons have proper spacing */
.btn {
    margin: 0;
    box-sizing: border-box;
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-notice.show {
    transform: translateY(0);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

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

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - New Design */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0f1e2e;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 30, 46, 0.95) 0%,
        rgba(44, 95, 141, 0.85) 50%,
        rgba(74, 144, 164, 0.8) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(107, 184, 199, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 144, 164, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 30px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Hero Content */
.hero-content-wrapper {
    color: var(--bg-white);
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(107, 184, 199, 0.15);
    border: 1px solid rgba(107, 184, 199, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 184, 199, 0.3);
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
}

.hero-main-title {
    font-size: clamp(42px, 7vw, 84px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.title-word {
    display: block;
}

.title-1 {
    color: var(--bg-white);
}

.title-2 {
    background: linear-gradient(135deg, #6bb8c7 0%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 8px 0;
}

.title-3 {
    color: var(--bg-white);
}

.hero-description {
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-features {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 184, 199, 0.2);
    border-radius: 50%;
    color: #6bb8c7;
    font-weight: bold;
    font-size: 12px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #6bb8c7 0%, #4a90a4 100%);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(107, 184, 199, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(107, 184, 199, 0.6);
    background: linear-gradient(135deg, #4a90a4 0%, #2c5f8d 100%);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Visual Cards */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    position: absolute;
    width: 280px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, z-index 0.4s ease;
}

.hero-card-1 {
    top: 50%;
    left: 10%;
    transform: translateY(-50%) rotate(-12deg);
    z-index: 1;
}

.hero-card-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: 2;
    width: 300px;
    height: 380px;
}

.hero-card-3 {
    top: 50%;
    right: 10%;
    transform: translateY(-50%) rotate(12deg);
    z-index: 1;
}

.hero-card:hover {
    transform: translateY(-50%) scale(1.08) rotate(0deg);
    z-index: 10;
}

.hero-card-2:hover {
    transform: translate(-50%, -50%) scale(1.08) rotate(0deg);
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.card-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    letter-spacing: 1px;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(20px);
    }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        transparent 100%);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.btn-primary {
    background: linear-gradient(135deg, 
        var(--accent-color) 0%, 
        var(--secondary-color) 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, 
        var(--secondary-color) 0%, 
        var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 95, 141, 0.4);
}

.btn-primary:hover::after {
    left: 100%;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 0;
    position: relative;
    display: inline-block;
    padding: 0 20px 15px 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--accent-color) 50%, 
        var(--primary-color) 100%);
    border-radius: 2px;
    animation: gradientShift 3s ease infinite;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid transparent;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(107, 184, 199, 0.05) 0%, 
        rgba(74, 144, 164, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 40px rgba(44, 95, 141, 0.2),
                0 0 0 1px rgba(107, 184, 199, 0.2);
    border-color: rgba(107, 184, 199, 0.3);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    transition: transform 0.6s ease;
    position: relative;
    z-index: 0;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.product-content {
    padding: 30px 25px;
}

.product-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 0;
    color: var(--primary-color);
    padding: 0;
}

.product-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

/* Accordion */
.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-white);
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: var(--bg-light);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.accordion-header {
    position: relative;
    overflow: hidden;
}

.accordion-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(107, 184, 199, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.accordion-header:hover {
    background: #e9ecef;
    color: var(--primary-color);
}

.accordion-header:hover::before {
    left: 100%;
}

.accordion-icon {
    font-size: 24px;
    color: var(--primary-color);
    transition: var(--transition);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-body {
    padding: 25px;
}

.accordion-body p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.accordion-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-top: 20px;
}

/* Supplements Section */
.supplements-section {
    background: var(--bg-light);
}

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

.supplements-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 0;
    padding: 0;
}

.supplements-text p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 20px;
}

.supplements-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* Beauty Section */
.beauty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.beauty-item {
    text-align: center;
}

.beauty-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.beauty-item {
    position: relative;
    transition: var(--transition);
}

.beauty-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(107, 184, 199, 0.1) 0%, 
        transparent 100%);
    opacity: 0;
    transition: var(--transition);
    border-radius: 10px;
    pointer-events: none;
}

.beauty-item:hover {
    transform: translateY(-5px);
}

.beauty-item:hover .beauty-image {
    transform: scale(1.08);
    box-shadow: 0 10px 35px rgba(44, 95, 141, 0.25);
}

.beauty-item:hover::after {
    opacity: 1;
}

.beauty-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
    margin-top: 0;
    padding: 0 10px;
}

.beauty-item p {
    color: var(--text-light);
}

/* Medical Section */
.medical-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.medical-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.medical-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 0;
    padding: 0;
}

.medical-text p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.medical-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.medical-feature {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.medical-feature h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    margin-top: 0;
    font-size: 20px;
    padding: 0;
}

.medical-feature p {
    color: var(--text-light);
    margin: 0;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.about-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    margin-top: 0;
    padding: 0;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
}

.contact-form .btn {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 141, 0.1);
}

.form-group textarea {
    resize: vertical;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section p {
    line-height: 1.8;
    color: #bdc3c7;
    margin-bottom: 10px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #95a5a6;
    font-size: 14px;
}

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

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

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

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

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes slide {
    0% {
        left: -300px;
    }
    100% {
        left: calc(100% + 300px);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Policy Pages Styles */
.policy-page {
    padding: 40px 0;
    min-height: 70vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.policy-content h1 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.policy-content h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 12px;
}

.policy-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
}

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

.policy-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.policy-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--primary-color);
}

/* Thanks Page */
.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Mobile Responsive */
/* Breakpoint at 768px - standard tablet/mobile breakpoint */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-link {
        padding: 15px 0;
        width: 100%;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 80px 0 50px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .hero-content-wrapper {
        text-align: center;
    }

    .hero-badge-new {
        font-size: 11px;
        padding: 8px 16px;
        margin-bottom: 25px;
    }

    .badge-icon {
        width: 18px;
        height: 18px;
        font-size: 12px;
    }

    .hero-main-title {
        font-size: clamp(32px, 9vw, 42px);
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: clamp(14px, 3.5vw, 16px);
        margin-bottom: 25px;
        line-height: 1.6;
        max-width: 100%;
    }

    .hero-features {
        justify-content: center;
        gap: 12px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .hero-feature {
        font-size: 13px;
        gap: 8px;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero-visual {
        height: 280px;
        order: -1;
        margin-bottom: 20px;
    }

    .hero-card {
        width: 140px;
        height: 180px;
        border-radius: 15px;
    }

    .hero-card-1 {
        top: 50%;
        left: 8%;
        transform: translateY(-50%) rotate(-8deg);
    }

    .hero-card-2 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(0deg);
        width: 160px;
        height: 200px;
        z-index: 2;
    }

    .hero-card-3 {
        top: 50%;
        right: 8%;
        transform: translateY(-50%) rotate(8deg);
    }

    .hero-card:hover {
        transform: translateY(-50%) scale(1.03) rotate(0deg);
    }

    .hero-card-2:hover {
        transform: translate(-50%, -50%) scale(1.03) rotate(0deg);
    }

    .card-label {
        font-size: 14px;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }

    .hero-scroll-hint {
        bottom: 15px;
        font-size: 10px;
        gap: 8px;
    }

    .scroll-mouse {
        width: 24px;
        height: 40px;
    }

    .scroll-wheel {
        width: 3px;
        height: 6px;
        top: 6px;
    }

    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 28px;
        padding: 0 15px 15px 15px;
    }
    
    .section-header {
        padding: 0 10px;
    }
    
    .section-subtitle {
        padding: 0 15px;
    }

    .supplements-content,
    .medical-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .supplements-image,
    .medical-image,
    .about-image {
        height: 300px;
    }

    .products-grid,
    .beauty-grid {
        grid-template-columns: 1fr;
    }

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

    .cookie-btn {
        width: 100%;
    }

    .policy-content {
        padding: 20px;
    }

    .policy-content h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 0 40px;
    }

    .hero-container {
        padding: 0 15px;
        gap: 30px;
    }

    .hero-badge-new {
        font-size: 10px;
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .hero-main-title {
        font-size: clamp(28px, 10vw, 36px);
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 25px;
    }

    .hero-feature {
        font-size: 12px;
    }

    .btn-hero {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-visual {
        height: 240px;
    }

    .hero-card {
        width: 120px;
        height: 150px;
    }

    .hero-card-1 {
        left: 5%;
        transform: translateY(-50%) rotate(-6deg);
    }

    .hero-card-2 {
        width: 140px;
        height: 170px;
        transform: translate(-50%, -50%) rotate(0deg);
    }

    .hero-card-3 {
        right: 5%;
        transform: translateY(-50%) rotate(6deg);
    }

    .card-label {
        font-size: 12px;
        bottom: 12px;
        left: 12px;
        right: 12px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
    }
}

