/* Sectionoutstand CSS Styles */

/* CSS Variables */
:root {
    /* Colors */
    --sectionoutstand-dark-blue: #101418;
    --sectionoutstand-dark-blue-2: #1C252C;
    --sectionoutstand-purple: #C792EA;
    --sectionoutstand-teal: #4DD0E1;
    --sectionoutstand-white: #ECEFF1;
    --sectionoutstand-gray-100: #f3f4f6;
    --sectionoutstand-gray-200: #e5e7eb;
    --sectionoutstand-gray-300: #d1d5db;
    --sectionoutstand-gray-400: #9ca3af;
    --sectionoutstand-gray-500: #6b7280;
    --sectionoutstand-gray-600: #4b5563;
    --sectionoutstand-gray-700: #374151;
    --sectionoutstand-gray-800: #1f2937;
    --sectionoutstand-gray-900: #111827;
    
    /* Typography */
    --sectionoutstand-font-primary: 'Quicksand', sans-serif;
    --sectionoutstand-font-secondary: 'Spectral', serif;
    
    /* Spacing */
    --sectionoutstand-space-xs: 0.25rem;
    --sectionoutstand-space-sm: 0.5rem;
    --sectionoutstand-space-md: 1rem;
    --sectionoutstand-space-lg: 1.5rem;
    --sectionoutstand-space-xl: 2rem;
    --sectionoutstand-space-2xl: 3rem;
    --sectionoutstand-space-3xl: 4rem;
    --sectionoutstand-space-4xl: 6rem;
    
    /* Borders */
    --sectionoutstand-border-radius-sm: 0.25rem;
    --sectionoutstand-border-radius-md: 0.5rem;
    --sectionoutstand-border-radius-lg: 1rem;
    
    /* Shadows */
    --sectionoutstand-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --sectionoutstand-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --sectionoutstand-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Transitions */
    --sectionoutstand-transition-fast: 0.2s ease;
    --sectionoutstand-transition-medium: 0.3s ease;
    --sectionoutstand-transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--sectionoutstand-font-primary);
    line-height: 1.6;
    color: var(--sectionoutstand-dark-blue-2);
    background-color: var(--sectionoutstand-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--sectionoutstand-transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--sectionoutstand-font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--sectionoutstand-space-md);
    color: var(--sectionoutstand-dark-blue);
}

p {
    margin-bottom: var(--sectionoutstand-space-md);
}

/* Container */
.sectionoutstand-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--sectionoutstand-space-lg);
}

/* Typography */
.sectionoutstand-section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--sectionoutstand-space-md);
}

.sectionoutstand-section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--sectionoutstand-space-xl);
    color: var(--sectionoutstand-gray-600);
}

/* Buttons */
.sectionoutstand-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--sectionoutstand-border-radius-md);
    transition: all var(--sectionoutstand-transition-fast);
    text-align: center;
}

.sectionoutstand-btn-primary {
    background-color: var(--sectionoutstand-purple);
    color: white;
    box-shadow: var(--sectionoutstand-shadow-md);
}

.sectionoutstand-btn-primary:hover {
    background-color: #b673d6;
    transform: translateY(-2px);
    box-shadow: var(--sectionoutstand-shadow-lg);
}

.sectionoutstand-btn-secondary {
    background-color: var(--sectionoutstand-teal);
    color: var(--sectionoutstand-dark-blue);
    box-shadow: var(--sectionoutstand-shadow-md);
}

.sectionoutstand-btn-secondary:hover {
    background-color: #3cbdce;
    transform: translateY(-2px);
    box-shadow: var(--sectionoutstand-shadow-lg);
}

/* Section Styles */
.sectionoutstand-section {
    padding: var(--sectionoutstand-space-3xl) 0;
}

.sectionoutstand-section-header {
    margin-bottom: var(--sectionoutstand-space-2xl);
    text-align: center;
}

.sectionoutstand-section-divider {
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, var(--sectionoutstand-purple), var(--sectionoutstand-teal));
    margin: 0 auto var(--sectionoutstand-space-lg);
    border-radius: 3px;
}

/* Privacy Policy Popup */
.sectionoutstand-privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--sectionoutstand-dark-blue-2);
    color: var(--sectionoutstand-white);
    padding: var(--sectionoutstand-space-lg);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--sectionoutstand-transition-medium);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.sectionoutstand-privacy-popup.active {
    transform: translateY(0);
}

.sectionoutstand-privacy-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--sectionoutstand-space-md);
}

.sectionoutstand-privacy-popup p {
    margin-bottom: 0;
    flex: 1;
}

.sectionoutstand-privacy-popup-buttons {
    display: flex;
    gap: var(--sectionoutstand-space-md);
}

/* Header */
.sectionoutstand-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: transform var(--sectionoutstand-transition-medium), background-color var(--sectionoutstand-transition-medium), padding var(--sectionoutstand-transition-medium);
}

.sectionoutstand-header.scrolled {
    position: fixed;
    background-color: rgba(28, 37, 44, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--sectionoutstand-space-sm) 0;
    transform: translateY(-100%);
}

.sectionoutstand-header.visible {
    transform: translateY(0);
}

.sectionoutstand-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--sectionoutstand-space-lg);
    max-width: 1400px;
    margin: 0 auto;
    height: 60px;
}

.sectionoutstand-logo {
    font-family: var(--sectionoutstand-font-secondary);
    font-weight: 700;
    font-size: 1.75rem;
}

.sectionoutstand-logo-text {
    background: linear-gradient(90deg, var(--sectionoutstand-purple), var(--sectionoutstand-teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

.sectionoutstand-nav {
    display: flex;
    align-items: center;
}

.sectionoutstand-menu {
    display: flex;
    align-items: center;
    gap: var(--sectionoutstand-space-lg);
}

.sectionoutstand-menu a {
    color: var(--sectionoutstand-white);
    font-weight: 500;
    position: relative;
}

.sectionoutstand-menu a:not(.sectionoutstand-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--sectionoutstand-teal);
    transition: width var(--sectionoutstand-transition-fast);
}

.sectionoutstand-menu a:not(.sectionoutstand-btn):hover::after {
    width: 100%;
}

.sectionoutstand-menu .sectionoutstand-btn {
    margin-left: var(--sectionoutstand-space-md);
}

.sectionoutstand-menu-toggle {
    display: none;
    cursor: pointer;
}

.sectionoutstand-hamburger {
    width: 30px;
    height: 20px;
    position: relative;
}

.sectionoutstand-hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--sectionoutstand-white);
    left: 0;
    transition: all var(--sectionoutstand-transition-fast);
}

.sectionoutstand-hamburger span:nth-child(1) {
    top: 0;
}

.sectionoutstand-hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.sectionoutstand-hamburger span:nth-child(3) {
    bottom: 0;
}

.sectionoutstand-menu-toggle.active .sectionoutstand-hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.sectionoutstand-menu-toggle.active .sectionoutstand-hamburger span:nth-child(2) {
    opacity: 0;
}

.sectionoutstand-menu-toggle.active .sectionoutstand-hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
}

/* Hero Section */
.sectionoutstand-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sectionoutstand-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.stretching-container-bg{
    background-image: url('../images/transform.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sectionoutstand-hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--sectionoutstand-space-lg);
    color: var(--sectionoutstand-white);
}

.sectionoutstand-hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--sectionoutstand-space-lg);
    line-height: 1.1;
    color: var(--sectionoutstand-white);
}

.sectionoutstand-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--sectionoutstand-space-xl);
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sectionoutstand-hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--sectionoutstand-space-md);
}

.sectionoutstand-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.sectionoutstand-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    animation: float 15s infinite ease-in-out;
}

.sectionoutstand-shape-1 {
    background-color: var(--sectionoutstand-purple);
    width: 400px;
    height: 400px;
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.sectionoutstand-shape-2 {
    background-color: var(--sectionoutstand-teal);
    width: 300px;
    height: 300px;
    bottom: 5%;
    right: -50px;
    animation-delay: -5s;
}

.sectionoutstand-shape-3 {
    background: linear-gradient(45deg, var(--sectionoutstand-purple), var(--sectionoutstand-teal));
    width: 350px;
    height: 350px;
    top: 50%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-20px, 20px);
    }
    50% {
        transform: translate(20px, 40px);
    }
    75% {
        transform: translate(40px, -20px);
    }
}

/* About Section */
.sectionoutstand-about-section {
    background-color: var(--sectionoutstand-white);
}

.sectionoutstand-about-content {
    display: flex;
    gap: var(--sectionoutstand-space-2xl);
    align-items: center;
}

.sectionoutstand-about-image {
    flex: 1;
}

.sectionoutstand-image-wrapper {
    position: relative;
    border-radius: var(--sectionoutstand-border-radius-lg);
    overflow: hidden;
    box-shadow: var(--sectionoutstand-shadow-lg);
}

.sectionoutstand-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(199, 146, 234, 0.3), rgba(77, 208, 225, 0.3));
    z-index: 1;
}

.sectionoutstand-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--sectionoutstand-transition-slow);
}

.sectionoutstand-image-wrapper:hover img {
    transform: scale(1.05);
}

.sectionoutstand-about-text {
    flex: 1;
}

.sectionoutstand-about-text p {
    margin-bottom: var(--sectionoutstand-space-md);
    color: var(--sectionoutstand-gray-700);
}

.sectionoutstand-about-text .sectionoutstand-btn {
    margin-top: var(--sectionoutstand-space-md);
}

/* Products Section */
.sectionoutstand-products-section {
    background-color: var(--sectionoutstand-gray-100);
}

.sectionoutstand-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--sectionoutstand-space-xl);
}

.sectionoutstand-product-card {
    background-color: white;
    border-radius: var(--sectionoutstand-border-radius-lg);
    overflow: hidden;
    box-shadow: var(--sectionoutstand-shadow-md);
    transition: transform var(--sectionoutstand-transition-medium), box-shadow var(--sectionoutstand-transition-medium);
}

.sectionoutstand-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sectionoutstand-shadow-lg);
}

.sectionoutstand-product-image {
    height: 200px;
    overflow: hidden;
}

.sectionoutstand-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--sectionoutstand-transition-medium);
}

.sectionoutstand-product-card:hover .sectionoutstand-product-image img {
    transform: scale(1.05);
}

.sectionoutstand-product-content {
    padding: var(--sectionoutstand-space-lg);
}

.sectionoutstand-product-title {
    font-size: 1.25rem;
    margin-bottom: var(--sectionoutstand-space-sm);
}

.sectionoutstand-product-description {
    font-size: 0.9rem;
    color: var(--sectionoutstand-gray-600);
    margin-bottom: var(--sectionoutstand-space-md);
}

.sectionoutstand-product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sectionoutstand-dark-blue);
    margin-bottom: var(--sectionoutstand-space-md);
}

/* Meal Plans Section */
.sectionoutstand-meal-plans-section {
    background-color: var(--sectionoutstand-white);
}

.sectionoutstand-meal-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--sectionoutstand-space-xl);
}

.sectionoutstand-meal-plan-card {
    background-color: white;
    border-radius: var(--sectionoutstand-border-radius-lg);
    overflow: hidden;
    box-shadow: var(--sectionoutstand-shadow-md);
    transition: transform var(--sectionoutstand-transition-medium), box-shadow var(--sectionoutstand-transition-medium);
    position: relative;
}

.sectionoutstand-meal-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sectionoutstand-shadow-lg);
}

.sectionoutstand-meal-plan-featured {
    border: 2px solid var(--sectionoutstand-purple);
    transform: scale(1.05);
}

.sectionoutstand-meal-plan-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.sectionoutstand-meal-plan-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--sectionoutstand-purple);
    color: white;
    padding: var(--sectionoutstand-space-xs) var(--sectionoutstand-space-md);
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: var(--sectionoutstand-border-radius-md);
}

.sectionoutstand-meal-plan-header {
    background: linear-gradient(135deg, var(--sectionoutstand-dark-blue-2), var(--sectionoutstand-dark-blue));
    color: white;
    padding: var(--sectionoutstand-space-lg);
    position: relative;
}

.sectionoutstand-meal-plan-title {
    font-size: 1.5rem;
    margin-bottom: var(--sectionoutstand-space-sm);
    color: white;
}

.sectionoutstand-meal-plan-price {
    font-size: 1.25rem;
    font-weight: 600;
}

.sectionoutstand-meal-plan-content {
    padding: var(--sectionoutstand-space-lg);
}

.sectionoutstand-meal-plan-features {
    margin-bottom: var(--sectionoutstand-space-lg);
}

.sectionoutstand-meal-plan-features li {
    padding: var(--sectionoutstand-space-sm) 0;
    border-bottom: 1px solid var(--sectionoutstand-gray-200);
    position: relative;
    padding-left: 1.5rem;
}

.sectionoutstand-meal-plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sectionoutstand-teal);
    font-weight: 700;
}

.sectionoutstand-meal-plan-features li:last-child {
    border-bottom: none;
}

/* Nutrition Section */
.sectionoutstand-nutrition-section {
    background-color: var(--sectionoutstand-gray-100);
}

.sectionoutstand-nutrition-content {
    display: flex;
    gap: var(--sectionoutstand-space-2xl);
    align-items: center;
}

.sectionoutstand-nutrition-text {
    flex: 1;
}

.sectionoutstand-nutrition-text > p {
    margin-bottom: var(--sectionoutstand-space-lg);
}

.sectionoutstand-nutrition-tip {
    display: flex;
    gap: var(--sectionoutstand-space-md);
    margin-bottom: var(--sectionoutstand-space-lg);
    background-color: white;
    padding: var(--sectionoutstand-space-md);
    border-radius: var(--sectionoutstand-border-radius-md);
    box-shadow: var(--sectionoutstand-shadow-sm);
    transition: transform var(--sectionoutstand-transition-fast);
}

.sectionoutstand-nutrition-tip:hover {
    transform: translateY(-3px);
    box-shadow: var(--sectionoutstand-shadow-md);
}

.sectionoutstand-nutrition-tip-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sectionoutstand-teal);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sectionoutstand-nutrition-tip-content h3 {
    font-size: 1.1rem;
    margin-bottom: var(--sectionoutstand-space-xs);
}

.sectionoutstand-nutrition-tip-content p {
    font-size: 0.9rem;
    color: var(--sectionoutstand-gray-600);
    margin-bottom: 0;
}

.sectionoutstand-nutrition-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sectionoutstand-nutrition-image img {
    border-radius: var(--sectionoutstand-border-radius-lg);
    box-shadow: var(--sectionoutstand-shadow-lg);
    margin-bottom: var(--sectionoutstand-space-lg);
}

.sectionoutstand-nutrition-image .sectionoutstand-btn {
    width: 100%;
    max-width: 300px;
}

/* Workshops Section */
.sectionoutstand-workshops-section {
    background-color: var(--sectionoutstand-white);
}

.sectionoutstand-workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--sectionoutstand-space-xl);
}

.sectionoutstand-workshop-card {
    background-color: white;
    border-radius: var(--sectionoutstand-border-radius-lg);
    overflow: hidden;
    box-shadow: var(--sectionoutstand-shadow-md);
    transition: transform var(--sectionoutstand-transition-medium), box-shadow var(--sectionoutstand-transition-medium);
}

.sectionoutstand-workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sectionoutstand-shadow-lg);
}

.sectionoutstand-workshop-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.sectionoutstand-workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--sectionoutstand-transition-medium);
}

.sectionoutstand-workshop-card:hover .sectionoutstand-workshop-image img {
    transform: scale(1.05);
}

.sectionoutstand-workshop-date {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--sectionoutstand-dark-blue-2);
    color: white;
    padding: var(--sectionoutstand-space-xs) var(--sectionoutstand-space-md);
    font-size: 0.8rem;
    font-weight: 600;
    border-top-right-radius: var(--sectionoutstand-border-radius-md);
}

.sectionoutstand-workshop-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--sectionoutstand-teal);
    color: var(--sectionoutstand-dark-blue);
    padding: var(--sectionoutstand-space-xs) var(--sectionoutstand-space-md);
    font-size: 0.8rem;
    font-weight: 600;
    border-top-right-radius: var(--sectionoutstand-border-radius-md);
}

.sectionoutstand-workshop-content {
    padding: var(--sectionoutstand-space-lg);
}

.sectionoutstand-workshop-title {
    font-size: 1.25rem;
    margin-bottom: var(--sectionoutstand-space-sm);
}

.sectionoutstand-workshop-description {
    font-size: 0.9rem;
    color: var(--sectionoutstand-gray-600);
    margin-bottom: var(--sectionoutstand-space-md);
}

.sectionoutstand-workshop-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--sectionoutstand-space-md);
    font-size: 0.9rem;
}

.sectionoutstand-workshop-location {
    color: var(--sectionoutstand-gray-600);
}

.sectionoutstand-workshop-price {
    font-weight: 600;
    color: var(--sectionoutstand-dark-blue);
}

/* CTA Section */
.sectionoutstand-cta-section {
    background: linear-gradient(135deg, var(--sectionoutstand-dark-blue), var(--sectionoutstand-dark-blue-2));
    color: white;
    padding: var(--sectionoutstand-space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.sectionoutstand-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(199, 146, 234, 0.15) 0%, transparent 50%), 
                      radial-gradient(circle at 80% 80%, rgba(77, 208, 225, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.sectionoutstand-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.sectionoutstand-cta-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: var(--sectionoutstand-space-md);
}

.sectionoutstand-cta-text {
    font-size: 1.1rem;
    margin-bottom: var(--sectionoutstand-space-xl);
}

.sectionoutstand-cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--sectionoutstand-space-md);
}

/* Footer */
.sectionoutstand-footer {
    background-color: var(--sectionoutstand-dark-blue);
    color: var(--sectionoutstand-gray-300);
    padding: var(--sectionoutstand-space-2xl) 0 var(--sectionoutstand-space-lg);
}

.sectionoutstand-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sectionoutstand-space-lg);
    margin-bottom: var(--sectionoutstand-space-xl);
}

.sectionoutstand-footer-logo {
    flex: 1;
    min-width: 200px;
}

.sectionoutstand-footer-logo img{
    max-width: 150px;
}

.sectionoutstand-footer-tagline {
    font-size: 0.9rem;
    color: var(--sectionoutstand-gray-400);
    margin-top: var(--sectionoutstand-space-sm);
}

.sectionoutstand-footer-links {
    display: flex;
    gap: var(--sectionoutstand-space-lg);
}

.sectionoutstand-footer-links a {
    color: var(--sectionoutstand-gray-300);
    transition: color var(--sectionoutstand-transition-fast);
}

.sectionoutstand-footer-links a:hover {
    color: var(--sectionoutstand-teal);
}

.sectionoutstand-footer-social {
    display: flex;
    gap: var(--sectionoutstand-space-md);
}

.sectionoutstand-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--sectionoutstand-white);
    font-size: 1.2rem;
    transition: all var(--sectionoutstand-transition-fast);
}

.sectionoutstand-footer-social a:hover {
    background-color: var(--sectionoutstand-teal);
    color: var(--sectionoutstand-dark-blue);
    transform: translateY(-3px);
}

.sectionoutstand-footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    color: var(--sectionoutstand-gray-500);
    padding-top: var(--sectionoutstand-space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .sectionoutstand-section-title {
        font-size: 2rem;
    }
    
    .sectionoutstand-hero-title {
        font-size: 3rem;
    }
    
    .sectionoutstand-about-content,
    .sectionoutstand-nutrition-content {
        flex-direction: column;
    }
    
    .sectionoutstand-meal-plan-featured {
        transform: scale(1);
    }
    
    .sectionoutstand-meal-plan-featured:hover {
        transform: translateY(-5px);
    }
    .sectionoutstand-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--sectionoutstand-dark-blue-2);
        flex-direction: column;
        justify-content: center;
        gap: var(--sectionoutstand-space-xl);
        transition: right var(--sectionoutstand-transition-medium);
        z-index: 100;
        padding: var(--sectionoutstand-space-2xl);
    }
    
    .sectionoutstand-menu.active {
        right: 0;
    }
    
    .sectionoutstand-menu-toggle {
        display: block;
        z-index: 101;
    }
}

@media (max-width: 768px) {
    
    .sectionoutstand-hero-title {
        font-size: 2.5rem;
    }
    
    .sectionoutstand-hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .sectionoutstand-hero-buttons .sectionoutstand-btn {
        width: 100%;
    }
    
    .sectionoutstand-section-title {
        font-size: 1.75rem;
    }
    
    .sectionoutstand-cta-title {
        font-size: 2rem;
    }
    
    .sectionoutstand-cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .sectionoutstand-privacy-popup-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sectionoutstand-footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sectionoutstand-footer-links {
        flex-direction: column;
        gap: var(--sectionoutstand-space-md);
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .sectionoutstand-hero-title {
        font-size: 2rem;
    }
    
    .sectionoutstand-section {
        padding: var(--sectionoutstand-space-2xl) 0;
    }
    
    .sectionoutstand-products-grid,
    .sectionoutstand-workshops-grid {
        grid-template-columns: 1fr;
    }

    .finish-navigation{
    display: flex;
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 15px;
}
}

@media (max-width: 320px) {
    html {
        font-size: 12px;
    }
    
    .sectionoutstand-container {
        padding: 0 var(--sectionoutstand-space-md);
    }
    
    .sectionoutstand-hero-title {
        font-size: 1.8rem;
    }
    
    .sectionoutstand-hero-subtitle {
        font-size: 1rem;
    }
}


.sectionoutstand-logo img{
    max-width: 150px;
}

