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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #3fde00;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #35c000;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #545b62;
}

.btn-outline {
    background-color: transparent;
    color: #3fde00;
    border: 2px solid #3fde00;
}

.btn-outline:hover {
    background-color: #3fde00;
    color: #ffffff;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: bold;
    color: #3fde00;
}

.logo img {
    width: 40px;
    height: 40px;
}

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

.nav a {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #3fde00;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Sections */
.about, .products, .pricing, .testimonials, .newsletter, .contact-info {
    padding: 80px 0;
}

.about {
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.about-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
}

.about-text ul {
    list-style: none;
}

.about-text li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
}

.about-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3fde00;
    font-weight: bold;
}

.about-image img {
    width: 100%;
    height: auto;
}

blockquote {
    border-left: 4px solid #3fde00;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #666;
}

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

.product-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.product-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.75rem;
    font-weight: bold;
    color: #3fde00;
    margin-bottom: 1.5rem;
}

/* Pricing Section */
.pricing {
    background-color: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured {
    border: 3px solid #3fde00;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3fde00;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.price-large {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3fde00;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3fde00;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    margin-bottom: 1.5rem;
    color: #666;
    font-style: italic;
}

.author strong {
    color: #333;
    display: block;
}

.author span {
    color: #666;
    font-size: 0.875rem;
}

/* Newsletter Section */
.newsletter {
    background-color: #3fde00;
    color: #ffffff;
}

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

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row:last-of-type {
    grid-template-columns: 2fr 1fr;
}

.newsletter-form input {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
}

.checkbox-label a {
    color: #ffffff;
    text-decoration: underline;
}

/* Contact Info Section */
.contact-info {
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-item p {
    margin-bottom: 0.5rem;
    color: #666;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a {
    color: #3fde00;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #35c000;
}

/* Footer */
.footer {
    background-color: #333;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #3fde00;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3fde00;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #3fde00 0%, #35c000 100%);
    color: #ffffff;
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Exercise Categories */
.exercise-categories {
    background-color: #f8f9fa;
    padding: 2rem 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid #3fde00;
    background: transparent;
    color: #3fde00;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background-color: #3fde00;
    color: #ffffff;
}

/* Exercises Grid */
.exercises-grid {
    padding: 4rem 0;
}

.exercises-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.exercise-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.exercise-card:hover {
    transform: translateY(-5px);
}

.exercise-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.exercise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.exercise-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.difficulty {
    background-color: #3fde00;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

.duration {
    background-color: #e9ecef;
    color: #333;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

.exercise-instructions {
    margin-top: 1.5rem;
}

.exercise-instructions h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.exercise-instructions ol {
    list-style: decimal;
    padding-left: 1.5rem;
}

.exercise-instructions li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Training Plan */
.training-plan {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.plan-day {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.plan-day h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #3fde00;
}

.plan-day ul {
    text-align: left;
}

.plan-day li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #666;
}

.plan-day li:last-child {
    border-bottom: none;
}

/* Newsletter CTA */
.newsletter-cta {
    background: linear-gradient(135deg, #333 0%, #444 100%);
    color: #ffffff;
    padding: 4rem 0;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.inline-form {
    display: flex;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.inline-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.inline-form .btn {
    flex-shrink: 0;
}

/* Article Styles */
.article {
    margin-top: 80px;
}

.article-header {
    background: linear-gradient(135deg, #3fde00 0%, #35c000 100%);
    color: #ffffff;
    padding: 100px 0 60px;
    text-align: center;
}

.article-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    opacity: 0.9;
}

.article-lead {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.article-content {
    padding: 4rem 0;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.content-section p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

.section-image {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

/* Benefit Sections */
.benefit-section {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.benefit-icon img {
    width: 80px;
    height: 80px;
}

.benefit-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-content p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.7;
}

.benefit-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.benefit-content li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Cost Comparison */
.cost-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.cost-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cost-item h4 {
    margin-bottom: 1rem;
    color: #333;
}

.cost-item ul {
    list-style: none;
}

.cost-item li {
    padding: 0.25rem 0;
    color: #666;
}

.cost-item strong {
    color: #3fde00;
    font-size: 1.125rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #3fde00;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: #666;
    font-weight: 500;
}

/* Steps List */
.steps-list {
    margin: 2rem 0;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #3fde00;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.step-content p {
    color: #666;
    margin: 0;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, #3fde00 0%, #35c000 100%);
    color: #ffffff;
    padding: 4rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Company Page Styles */
.company-story {
    padding: 4rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.story-image img {
    width: 100%;
    height: auto;
}

.mission-values {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.company-stats {
    background-color: #333;
    color: #ffffff;
    padding: 4rem 0;
}

.company-stats .stat-number {
    color: #3fde00;
}

.company-stats .stat-label {
    color: #ccc;
}

.team-section {
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.team-member img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.position {
    color: #3fde00;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #666;
    line-height: 1.6;
}

.certifications {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cert-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.cert-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.cert-item p {
    color: #666;
    line-height: 1.6;
}

.social-responsibility {
    padding: 4rem 0;
}

.responsibility-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.responsibility-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.responsibility-text ul {
    list-style: none;
}

.responsibility-text li {
    padding: 0.75rem 0;
    color: #666;
    line-height: 1.6;
}

.responsibility-text strong {
    color: #3fde00;
}

.contact-cta {
    background: linear-gradient(135deg, #333 0%, #444 100%);
    color: #ffffff;
    padding: 4rem 0;
}

/* Contact Page Styles */
.contact-methods {
    padding: 4rem 0;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.method-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.method-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-detail {
    font-size: 1.25rem;
    font-weight: bold;
    color: #3fde00;
    margin-bottom: 1rem;
}

.method-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-form-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

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

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.form-header p {
    font-size: 1.125rem;
    color: #666;
}

.contact-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3fde00;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group span {
    line-height: 1.6;
}

.checkbox-group a {
    color: #3fde00;
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #3fde00;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.map-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.address-details p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.address-details h4 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.address-details ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.address-details li {
    margin-bottom: 0.25rem;
    color: #666;
}

.map-placeholder {
    background: #e9ecef;
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    color: #666;
}

.map-placeholder img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.social-section {
    padding: 4rem 0;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.social-card:hover {
    transform: translateY(-5px);
    background: #3fde00;
    color: #ffffff;
}

.social-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.social-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.social-card p {
    line-height: 1.6;
}

/* Legal Page Styles */
.legal-page {
    padding: 4rem 0;
    margin-top: 80px;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
}

.last-updated {
    color: #666;
    font-style: italic;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #333;
    border-left: 4px solid #3fde00;
    padding-left: 1rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #333;
}

.legal-section h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: #333;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #666;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #666;
}

.legal-section strong {
    color: #333;
}

.legal-section a {
    color: #3fde00;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #35c000;
}

.contact-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
}

/* Cookie Settings Demo */
.cookie-settings-demo {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.cookie-settings-demo h4 {
    margin-bottom: 1.5rem;
    color: #333;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.setting-item:last-child {
    border-bottom: none;
}

.status {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status.enabled {
    background-color: #3fde00;
    color: #ffffff;
}

.status.disabled {
    background-color: #dc3545;
    color: #ffffff;
}

/* Cookie Table */
.cookie-table {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.cookie-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.875rem;
}

.cookie-name {
    font-weight: 600;
    color: #333;
}

.cookie-purpose {
    color: #666;
}

.cookie-duration {
    color: #666;
}

.cookie-type {
    font-weight: 600;
    color: #3fde00;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.cookie-category {
    margin-bottom: 1rem;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    margin: 0;
}

.cookie-category span {
    color: #333;
    font-weight: 500;
}

.cookie-modal-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Thanks Page */
.thanks-section {
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 80px;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #3fde00;
}

.thanks-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.thanks-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.back-link {
    margin-top: 2rem;
}

.back-link a {
    color: #3fde00;
    font-weight: 500;
    text-decoration: none;
}

.back-link a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-content,
    .story-content,
    .responsibility-content,
    .map-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-row:last-of-type {
        grid-template-columns: 1fr;
    }
    
    .inline-form {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cost-comparison {
        grid-template-columns: 1fr;
    }
    
    .benefit-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .article-header h1 {
        font-size: 2.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .thanks-content h1 {
        font-size: 2.5rem;
    }
    
    .thanks-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .page-header h1,
    .article-header h1,
    .thanks-content h1 {
        font-size: 2rem;
    }
    
    .products-grid,
    .pricing-grid,
    .testimonials-grid,
    .exercises-list {
        grid-template-columns: 1fr;
    }
    
    .cookie-modal-content {
        padding: 1.5rem;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .pricing-card, .exercise-card {
        padding: 2rem 0.5rem;
    }
    .legal-header h1 {
        margin-top: 20px;
        font-size: 2rem;
    }
}
