/* General Styles */
:root {
    --primary-color: #4CAF50;
    --primary-light: #8BC34A;
    --primary-dark: #2E7D32;
    --secondary-color: #CDDC39;
    --text-color: #333;
    --light-text: #666;
    --white: #fff;
    --light-bg: #F1F8E9;
    --border-radius: 5px;
    --shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

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

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    line-height: 1.3;
}

p {
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    border: none;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

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

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

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

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

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

/* Navigation */
nav .menu {
    display: flex;
    align-items: center;
}

nav .menu li {
    margin-left: 20px;
}

nav .menu li a {
    color: var(--text-color);
    font-weight: 500;
}

nav .menu li a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Banner */
.banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-content {
    color: var(--white);
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.banner-buttons {
    display: flex;
    gap: 15px;
}

/* Section Styles */
section {
    padding: 60px 0;
}

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

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-light);
}

.section-header p {
    color: var(--light-text);
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    background-color: var(--light-bg);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    color: var(--primary-dark);
    margin-top: 20px;
}

.about-text ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.about-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* How it Works */
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.step-icon {
    margin-bottom: 15px;
}

.step h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

/* Offer Section */
.offers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.offer-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.offer-card.featured {
    background-color: var(--primary-light);
    color: var(--white);
    transform: scale(1.05);
}

.offer-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.offer-icon {
    margin-bottom: 20px;
}

.offer-card h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.offer-card.featured h3 {
    color: var(--white);
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.offer-card.featured .price {
    color: var(--white);
}

.offer-card ul {
    text-align: left;
    margin: 20px 0;
}

.offer-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.offer-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.offer-card.featured ul li::before {
    color: var(--white);
}

/* Menu Section */
.menu-section {
    background-color: var(--light-bg);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 20px;
    background-color: var(--white);
    border: 2px solid var(--primary-light);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--primary-dark);
}

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

.menu-day {
    display: none;
}

.menu-day.active {
    display: block;
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.menu-item {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.menu-icon {
    margin-right: 15px;
}

.menu-info h4 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.menu-meta {
    display: block;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 5px;
}

/* Testimonials */
.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 5rem;
    line-height: 1;
    color: var(--primary-light);
    opacity: 0.2;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 10px;
}

.testimonial-author {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-title {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* FAQ Section */
.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background-color: var(--light-bg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.faq-toggle::before {
    width: 2px;
    height: 20px;
    top: 0;
    left: 9px;
}

.faq-toggle::after {
    width: 20px;
    height: 2px;
    top: 9px;
    left: 0;
}

.faq-item.active .faq-toggle::before {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-content p {
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Newsletter */
.newsletter {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    margin: 60px auto;
    max-width: 800px;
}

.newsletter h3 {
    margin-bottom: 20px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

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

.footer-column h3 {
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

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

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

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

.footer-column ul li a:hover {
    opacity: 1;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

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

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

.footer-legal a {
    color: var(--white);
    opacity: 0.8;
}

.footer-legal a:hover {
    opacity: 1;
}

.footer-copyright p {
    opacity: 0.8;
    margin: 0;
}

/* Page Banner */
.page-banner {
    padding: 60px 0;
    background-color: var(--primary-light);
    color: var(--white);
    text-align: center;
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.icon {
    margin-right: 15px;
    color: var(--primary-color);
}

.info-item h3 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 1 0 calc(50% - 10px);
}

.form-group.full-width {
    flex: 1 0 100%;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.form-check input {
    margin-right: 10px;
    margin-top: 4px;
}

.form-note {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.map-container {
    max-width: 100%;
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Policy Content */
.policy-content {
    padding: 60px 0;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.policy-section h3 {
    color: var(--primary-color);
    margin: 20px 0 10px;
}

.policy-section p,
.policy-section ul,
.policy-section ol {
    margin-bottom: 20px;
}

.policy-section ul li,
.policy-section ol li {
    margin-bottom: 10px;
    margin-left: 20px;
}

.policy-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-style: italic;
    color: var(--light-text);
}

/* Thank You Section */
.thank-you-section {
    padding: 80px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.thank-you-details {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    text-align: left;
}

.thank-you-details h2 {
    color: var(--primary-dark);
}

.thank-you-details ul {
    margin-left: 20px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Blog Styles */
.blog-section {
    padding: 60px 0;
}

.blog-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-card-image {
    display: block;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.blog-content h2 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.blog-content h2 a {
    color: var(--primary-dark);
}

.blog-meta {
    display: block;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 15px;
}

.blog-date, .blog-author {
    display: block;
    margin-bottom: 5px;
}

.blog-excerpt {
    margin-bottom: 15px;
}

.blog-read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
}

.blog-read-more:hover {
    color: var(--primary-dark);
}

.blog-newsletter {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    margin: 0 auto;
    max-width: 800px;
}

.newsletter-content {
    text-align: center;
}

.newsletter-content h2 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.newsletter-form {
    margin-top: 20px;
}

/* Article Page */
.article-section {
    padding: 60px 0;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-header-image {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.post-meta {
    display: block;
    font-size: 1rem;
    color: var(--white);
    margin-top: 15px;
}

.post-date, .post-author {
    display: inline-block;
    margin-right: 20px;
}

.article-intro {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.article-content h2 {
    color: var(--primary-dark);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.article-content h3 {
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.article-image {
    margin: 30px 0;
}

.article-content ul, 
.article-content ol {
    margin: 20px 0;
    padding-left: 20px;
}

.article-content ul li, 
.article-content ol li {
    margin-bottom: 10px;
}

.article-tags {
    margin: 40px 0;
}

.article-tag {
    display: inline-block;
    background-color: var(--light-bg);
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    color: var(--primary-dark);
    transition: var(--transition);
}

.article-tag:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

.article-share {
    margin: 40px 0;
    text-align: center;
}

.article-share h3 {
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

.share-button:hover {
    transform: translateY(-3px);
}

.share-button.facebook:hover {
    background-color: #3b5998;
    color: var(--white);
}

.share-button.twitter:hover {
    background-color: #1da1f2;
    color: var(--white);
}

.share-button.linkedin:hover {
    background-color: #0077b5;
    color: var(--white);
}

.related-posts {
    margin-top: 60px;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav .menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }
    
    nav .menu.active {
        transform: translateY(0);
    }
    
    nav .menu li {
        margin: 15px 0;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .offers {
        gap: 40px;
    }
    
    .offer-card.featured {
        transform: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .banner {
        padding: 60px 0;
    }
    
    .banner-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-form .form-group {
        flex: 1 0 100%;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}