/* Base Styles */
:root {
    --primary-color: #4CAF50;
    --primary-light: #81C784;
    --primary-dark: #388E3C;
    --secondary-color: #2196F3;
    --secondary-light: #64B5F6;
    --secondary-dark: #1976D2;
    --dark-color: #333333;
    --grey-color: #666666;
    --light-grey: #f5f5f5;
    --white-color: #ffffff;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--grey-color);
    font-size: 1.1rem;
}

button {
    cursor: pointer;
    font-family: var(--font-primary);
}

section {
    padding: 5rem 0;
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

#header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: block;
}

.logo img {
    height: 40px;
}

.main-nav {
    margin-left: auto;
    margin-right: 2rem;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
}

.nav-list a {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark-color);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 6px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 14px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 22px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 14px;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 14px;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 600;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    color: var(--white-color);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.7) 0%, rgba(76, 175, 80, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 2rem;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--white-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.hero-cta:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Services Section */
.services-section {
    background-color: var(--light-grey);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--grey-color);
    font-size: 0.95rem;
}

/* Advantages Section */
.advantages-section {
    background-color: var(--white-color);
    position: relative;
}

.advantages-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary-light));
    opacity: 0.5;
}

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.advantages-content {
    flex: 1;
    min-width: 300px;
}

.advantages-list li {
    display: flex;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.advantages-list li:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.advantage-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

.advantage-text h4 {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.advantage-text p {
    color: var(--grey-color);
    font-size: 0.9rem;
}

/* Approach Section */
.approach-section {
    background-color: var(--light-grey);
    position: relative;
    overflow: hidden;
}

.approach-slider {
    position: relative;
    margin-top: 3rem;
}

.slider-container {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    flex: 0 0 100%;
    position: relative;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.slide-content {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.slide-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.slide-content p {
    color: var(--grey-color);
    margin-bottom: 1.5rem;
}

.nutrition-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
}

.nutrition-info span {
    background-color: var(--light-grey);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--dark-color);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.slider-prev,
.slider-next {
    background-color: var(--white-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    color: var(--dark-color);
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: var(--shadow-md);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-grey);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Process Section */
.process-section {
    background-color: var(--white-color);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/pro.jpg");
    opacity: 0.5;
}

.process-stepper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step-connector {
    flex: 0 0 5%;
    height: 2px;
    background-color: var(--primary-light);
    margin-top: 30px;
    position: relative;
}

.step-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.step-content p {
    color: var(--grey-color);
    font-size: 0.9rem;
}

/* Weekly Plan Section */
.weekly-plan-section {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.weekly-plan-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(33, 150, 243, 0.05);
    border-radius: 50%;
}

.calendar-container {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.calendar-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 1.5rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-title {
    margin: 0 1rem;
    font-family: var(--font-secondary);
    font-size: 1.3rem;
}

.nav-btn {
    background-color: transparent;
    border: none;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.nav-btn:hover {
    transform: scale(1.2);
}

.calendar-days {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.calendar-days::-webkit-scrollbar {
    display: none;
}

.day-column {
    flex: 1 0 300px;
    padding: 1rem;
    border-right: 1px solid #eee;
}

.day-column:last-child {
    border-right: none;
}

.day-header {
    font-family: var(--font-secondary);
    font-weight: 600;
    text-align: center;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-light);
}

.meal-item {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    background-color: #f9f9f9;
    position: relative;
}

.meal-time {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--white-color);
    background-color: var(--primary-color);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    margin-bottom: 0.5rem;
}

.meal-item h4 {
    font-family: var(--font-secondary);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.meal-item p {
    font-size: 0.9rem;
    color: var(--grey-color);
}

.meal-item.breakfast {
    border-left: 4px solid #FFC107;
}

.meal-item.lunch {
    border-left: 4px solid #2196F3;
}

.meal-item.dinner {
    border-left: 4px solid #9C27B0;
}

.meal-item.snack {
    border-left: 4px solid #FF5722;
}

.calendar-mobile-nav {
    display: none;
    padding: 1rem;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.day-nav-btn {
    background-color: transparent;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin: 0 0.3rem;
    transition: var(--transition);
}

.day-nav-btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white-color);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/test.jpg");
    opacity: 0.5;
}

.testimonials-carousel {
    position: relative;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-slides {
    position: relative;
    min-height: 300px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.testimonial.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-content {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-quote {
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--grey-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--dark-color);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--grey-color);
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background-color: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--dark-color);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    color: var(--primary-color);
}

.testimonial-progress {
    flex: 1;
    margin: 0 1rem;
}

.progress-bar {
    height: 4px;
    background-color: var(--light-grey);
    border-radius: 2px;
    overflow: hidden;
}

.progress-indicator {
    height: 100%;
    background-color: var(--primary-color);
    width: 33.33%;
    transition: transform 0.5s ease;
}

/* Plans Section */
.plans-section {
    background-color: var(--light-grey);
    position: relative;
}

.plans-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 3rem 2rem;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan-card.featured {
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
    z-index: 2;
}

.plan-badge {
    position: absolute;
    top: 0;
    right: 2rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0 0 20px 20px;
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.plan-price {
    position: relative;
    display: inline-flex;
    align-items: baseline;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-left: 0.2rem;
}

.period {
    font-size: 1rem;
    color: var(--grey-color);
    margin-left: 0.5rem;
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--dark-color);
}

.plan-features li svg {
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.feature-disabled {
    color: var(--grey-color);
    text-decoration: line-through;
}

.plan-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.plan-cta:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    background-color: var(--white-color);
    position: relative;
}

.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background-color: var(--white-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 1rem;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--grey-color);
    font-size: 1rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background-color: var(--light-grey);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/cta.jpg");
}

.cta-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.cta-text h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.cta-text p {
    color: var(--grey-color);
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.form-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
.site-footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 5rem 0 0;
    position: relative;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-title {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 0.5rem;
}

.footer-contact li {
    display: flex;
    margin-bottom: 1rem;
}

.footer-contact li svg {
    margin-right: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-contact li span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white-color);
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-newsletter p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    font-family: var(--font-primary);
    font-size: 0.9rem;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 0 1.5rem;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    margin-top: 3rem;
}

.footer-map {
    height: 300px;
    margin-bottom: 2rem;
}

#map {
    height: 100%;
    width: 100%;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-copyright p {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .process-stepper {
        flex-direction: column;
        align-items: center;
    }

    .step {
        margin-bottom: 2rem;
    }

    .step-connector {
        width: 2px;
        height: 30px;
        margin: 0;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .nav-list {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav.active .nav-list {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        box-shadow: var(--shadow-md);
        padding: 1rem 0;
        z-index: 1000;
    }

    .main-nav.active .nav-list li {
        margin: 0;
    }

    .main-nav.active .nav-list a {
        display: block;
        padding: 1rem 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .cta-content {
        flex-direction: column;
    }

    .mobile-hidden {
        display: none;
    }

    .calendar-mobile-nav {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero-section {
        height: 80vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .advantages-grid {
        flex-direction: column;
    }

    .advantages-list li:hover {
        transform: none;
    }

    .plan-card {
        max-width: 100%;
    }

    .plan-card:hover {
        transform: none;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-col {
        width: 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        padding: 0.8rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .slider-controls {
        flex-wrap: wrap;
    }

    .testimonial-content {
        padding: 1.5rem;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }
}