/* 
 * Plurelitha - Nutritional Science Website
 * CSS Styles
 */

:root {
    /* Main color palette */
    --primary-color: #2e7d32;
    --primary-light: #60ad5e;
    --primary-dark: #005005;
    --secondary-color: #ff8f00;
    --secondary-light: #ffc046;
    --secondary-dark: #c56000;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --background-light: #f9f9f9;
    --white: #ffffff;
    --black: #000000;
    
    /* Nutrition bar colors */
    --protein-color: #8e24aa;
    --carbs-color: #1e88e5;
    --fats-color: #fdd835;
    
    /* Animation speeds */
    --transition-slow: 0.5s;
    --transition-medium: 0.3s;
    --transition-fast: 0.15s;
    
    /* Fonts */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Poppins', sans-serif;
}

/* General Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-medium);
}

ul {
    list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 20px;
    color: var(--text-medium);
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all var(--transition-medium);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-medium);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    height: 50px;
}

.logo svg {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links li:last-child a::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-medium);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image-container {
    position: relative;
    height: 500px;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background-size: cover;
    font-size: 0;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.hero-image video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.floating-card {
    position: absolute;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 6s ease-in-out infinite;
}

.floating-card .card-icon {
    font-size: 1.8rem;
}

.floating-card .card-text {
    font-weight: 600;
    color: var(--text-dark);
}

.card-1 {
    top: 30px;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 50px;
    left: -50px;
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    right: -40px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    overflow: hidden;
}

.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--background-light);
}

/* Benefits Section */
.benefits {
    background-color: var(--background-light);
    padding: 100px 0;
}

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

.benefit-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.icon-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(46, 125, 50, 0.1);
    animation: pulse 3s infinite;
}

.benefit-icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
}

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

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-medium);
    font-size: 1rem;
}

/* Approach Section */
.approach {
    background-color: var(--white);
    padding: 120px 0;
}

.approach .container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}

.approach-steps {
    margin-top: 50px;
}

.step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 25px;
    height: calc(100% - 30px);
    width: 2px;
    background-color: rgba(46, 125, 50, 0.2);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--white);
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-medium);
}

.approach-image {
    position: relative;
}

.image-container {
    height: 500px;
    width: 100%;
    border-radius: 20px;
    background-image: url('images/ab.png');
    background-size: cover;
    background-position: center;
    position: relative;
    /* overflow: hidden; */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-text {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

/* Nutrition Plans Section */
.nutrition-plans {
    background-color: var(--background-light);
    padding: 120px 0;
}

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

.tab-btn {
    padding: 12px 25px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.plans-container {
    position: relative;
    height: 600px;
}

.plan {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-medium);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.plan.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.price {
    text-align: right;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--primary-color);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-medium);
}

.plan-features {
    margin-bottom: 40px;
}

.plan-features ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-features ul li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 15px;
}

.plan-composition {
    margin-bottom: 40px;
}

.composition-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.composition-label {
    width: 60px;
    font-weight: 600;
    color: var(--text-dark);
}

.composition-bar {
    flex-grow: 1;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin: 0 15px;
    overflow: hidden;
}

.fill {
    height: 100%;
    border-radius: 5px;
    animation: fillBar 2s ease-out forwards;
}

.protein {
    background-color: var(--protein-color);
}

.carbs {
    background-color: var(--carbs-color);
}

.fats {
    background-color: var(--fats-color);
}

.composition-value {
    font-weight: 600;
    color: var(--text-dark);
}

@keyframes fillBar {
    from {
        width: 0;
    }
    to {
        width: var(--width, 100%);
    }
}

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

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
    padding: 120px 0;
}

.testimonial-carousel {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
}

.testimonial-track {
    display: flex;
    overflow: hidden;
}

.testimonial-card {
    min-width: 100%;
    padding: 20px;
    transition: transform var(--transition-medium);
}

.testimonial-content {
    background-color: var(--background-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 40px;
    width: 30px;
    height: 30px;
    background-color: var(--background-light);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
    transform: rotate(45deg);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-left: 40px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-image: url('/api/placeholder/60/60');
    background-size: cover;
    margin-right: 20px;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.author-info p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.carousel-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition-medium);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* Team Section */
.team {
    background-color: var(--background-light);
    padding: 120px 0;
}

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

.team-member {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-medium);
    padding-bottom: 30px;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    height: 300px;
    background-image: url('/api/placeholder/300/300');
    background-size: cover;
    background-position: center;
    position: relative;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.member-photo:hover .photo-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--white);
    border-radius: 5px;
    color: var(--text-dark);
    font-weight: 500;
    transition: all var(--transition-medium);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.team-member h3 {
    text-align: center;
    margin: 25px 0 5px;
    font-size: 1.5rem;
}

.member-title {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    text-align: center;
    padding: 0 30px;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--white);
    padding: 80px 0;
}

.newsletter .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-content {
    max-width: 500px;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.newsletter-form .form-group {
    display: flex;
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    padding: 15px 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition-medium);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--primary-color);
}

.newsletter-form .btn-primary {
    border-radius: 0 50px 50px 0;
}

.form-consent {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.form-consent input {
    margin-right: 10px;
}

.form-consent label {
    font-size: 0.9rem;
    color: var(--text-medium);
}

html{
    overflow-x: hidden;
}

.newsletter-image {
    height: 400px;
    background-image: url('images/p.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    background-color: var(--background-light);
    padding: 120px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 50px;
}

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

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item .icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.info-item .text h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.info-item .text p {
    margin: 0;
    color: var(--text-medium);
}

.contact-form-container {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    padding: 40px;
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

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

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition-medium);
    font-family: var(--body-font);
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: var(--primary-color);
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 10px;
}

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

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;
}

.footer-logo svg {
    height: 100%;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    gap: 80px;
}

.footer-nav-column h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--white);
}

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

.footer-nav-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-medium);
}

.footer-nav-column ul li a:hover {
    color: var(--white);
}

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

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer .social-links {
    display: flex;
    gap: 15px;
}

.footer .social-link {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 8px 15px;
    transition: background-color var(--transition-medium);
}

.footer .social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px 30px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cookie-content p {
    margin: 0;
    padding-right: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    white-space: nowrap;
}

/* Reveal Animation for Text */
.reveal-text {
    overflow: hidden;
    position: relative;
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateX(-100%);
    animation: revealText 1.5s forwards;
}

@keyframes revealText {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero .container, .approach .container, .newsletter .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image-container {
        order: -1;
    }
    
    .approach-image {
        display: none;
    }
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-nav {
        justify-content: space-between;
        width: 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 80px 0;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-200%);
        transition: transform var(--transition-medium);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .plan-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .plans-container {
        height: 700px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-bottom: 20px;
        padding: 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn-primary, .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .benefit-card, .team-member {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .plan {
        padding: 30px 20px;
    }
    
    .plans-container {
        height: 750px;
    }
    
    .plan-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .price {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .logo{
        width: 200px;
    }
    .newsletter-form .form-group{
        flex-direction: column;
    }
    .newsletter-form .btn-primary, .newsletter-form input[type="email"]{
        border-radius: 50px;
        margin-bottom: 10px;
    }
}



 .text-wrapper h2, .text-wrapper h3{
  margin-top: 20px;
  margin-bottom: 10px;
}

.text-wrapper h1{
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
}
.text-wrapper h2{
  font-size: 1.5rem;
}

.text-wrapper{
  margin: 30px auto;
  max-width: 1200px;
  padding: 20px;
}
