/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2c3e2d;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #4a5568;
}

a {
    color: #38a169;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2d7738;
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #38a169, #48bb78);
    color: white;
    box-shadow: 0 4px 12px rgba(56, 161, 105, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2d7738, #38a169);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(56, 161, 105, 0.4);
    color: white;
}

.btn-secondary {
    background: #f7fafc;
    color: #2d3748;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #edf2f7;
    color: #2d3748;
}

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

.btn-outline:hover {
    background: #38a169;
    color: white;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #38a169;
}

.nav-brand i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #38a169;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #38a169;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #4a5568;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f0fff4, #c6f6d5);
}

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

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2d7738, #38a169);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4a5568;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===== FEATURES SECTION ===== */
.features {
    padding: 5rem 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #f0fff4, #e6fffa);
    border: 1px solid #c6f6d5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(56, 161, 105, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #38a169, #48bb78);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
}

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

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

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

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

.product-category {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-category:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(56, 161, 105, 0.2);
    border-color: #c6f6d5;
}

.category-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #68d391, #38a169);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

/* ===== ABOUT PREVIEW SECTION ===== */
.about-preview {
    padding: 5rem 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-svg {
    max-width: 100%;
    height: auto;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0fff4, #e6fffa);
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.review-stars {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.reviewer strong {
    display: block;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.reviewer span {
    color: #718096;
    font-size: 0.9rem;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2d7738, #38a169);
    color: white;
}

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

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

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form .form-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

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

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

/* ===== FOOTER ===== */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #68d391;
    margin-bottom: 1rem;
}

.footer-brand i {
    font-size: 1.8rem;
}

.footer-section h4 {
    color: #68d391;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #68d391;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #4a5568;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #68d391;
    transform: translateY(-2px);
}

.contact-info p {
    color: #cbd5e0;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #68d391;
}

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

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #f0fff4, #c6f6d5);
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px;
}

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

.page-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.policy-meta {
    margin-top: 1rem;
    color: #718096;
}

/* ===== MISSION SECTION ===== */
.mission {
    padding: 5rem 0;
    background: white;
}

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

.mission-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8rem;
    color: #68d391;
}

/* ===== VALUES SECTION ===== */
.values {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.value-card i {
    font-size: 3rem;
    color: #38a169;
    margin-bottom: 1rem;
}

/* ===== TEAM SECTION ===== */
.team {
    padding: 5rem 0;
    background: white;
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f0fff4, #e6fffa);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

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

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #38a169, #48bb78);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.member-role {
    color: #38a169;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== IMPACT SECTION ===== */
.impact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2d7738, #38a169);
    color: white;
}

.impact h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

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

.stat-label {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== TIMELINE SECTION ===== */
.timeline {
    padding: 5rem 0;
    background: white;
}

.timeline h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 60%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60%;
    margin-right: 0;
    text-align: left;
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: #38a169;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    z-index: 2;
}

.timeline-content {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 16px;
    position: relative;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    top: 3rem;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #68d391;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 2;
}

/* ===== MILESTONES SECTION ===== */
.milestones {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
}

.milestones h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.milestone-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.milestone-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #38a169, #48bb78);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

/* ===== FUTURE VISION SECTION ===== */
.future-vision {
    padding: 5rem 0;
    background: white;
}

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

.vision-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.goal-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 12px;
    text-align: left;
}

.goal-item i {
    font-size: 1.5rem;
    color: #38a169;
}

/* ===== BLOG ARTICLES ===== */
.blog-articles {
    padding: 5rem 0;
    background: white;
}

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

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.article-image {
    height: 200px;
    background: linear-gradient(135deg, #f0fff4, #c6f6d5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #38a169;
}

.article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #718096;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.article-content h2 {
    margin-bottom: 1rem;
}

.article-content h2 a {
    color: #2d3748;
    text-decoration: none;
}

.article-content h2 a:hover {
    color: #38a169;
}

.read-more {
    color: #38a169;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.75rem;
}

/* ===== ARTICLE PAGES ===== */
.article-header {
    background: linear-gradient(135deg, #f0fff4, #c6f6d5);
    padding: 8rem 0 4rem;
    margin-top: 70px;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #38a169;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: gap 0.3s ease;
}

.back-to-blog:hover {
    gap: 0.75rem;
}

.article-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #718096;
    flex-wrap: wrap;
}

.article-info span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.article-header h1 {
    font-size: 3rem;
    color: #2d7738;
    margin-bottom: 1rem;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
}

.article-content {
    padding: 5rem 0;
    background: white;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-body h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #2d3748;
}

.article-body h2 i {
    color: #38a169;
}

.article-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #38a169;
}

.article-body ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.article-image-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #f0fff4, #c6f6d5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #38a169;
    margin-bottom: 2rem;
}

.article-conclusion {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0fff4, #e6fffa);
    border-radius: 16px;
    border-left: 4px solid #38a169;
}

.article-conclusion i {
    color: #38a169;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.article-conclusion p {
    margin: 0;
    font-weight: 500;
    color: #2d3748;
}

.related-articles {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.related-articles h3 {
    margin-bottom: 1.5rem;
    color: #2d3748;
}

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

.related-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 12px;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.3s ease;
}

.related-card:hover {
    background: #edf2f7;
    color: #38a169;
    transform: translateY(-2px);
}

.related-card i {
    font-size: 1.5rem;
    color: #38a169;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2d3748;
}

/* ===== FORMS ===== */
.contact-form,
.newsletter-form {
    background: white;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #38a169;
    box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #38a169;
    border-color: #38a169;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-weight: bold;
}

/* ===== CONTACT INFO ===== */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #38a169, #48bb78);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.info-content p {
    margin: 0;
    color: #4a5568;
    line-height: 1.5;
}

.social-contact {
    margin-top: 2rem;
}

.social-contact h3 {
    margin-bottom: 1rem;
    color: #2d3748;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f7fafc;
    border-radius: 8px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #edf2f7;
    color: #38a169;
}

.social-link i {
    width: 20px;
    text-align: center;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-size: 1.1rem;
}

.faq-item h3 i {
    color: #38a169;
}

.faq-item p {
    margin: 0;
    color: #4a5568;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-section {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #f0fff4, #c6f6d5);
    margin-top: 70px;
    text-align: center;
}

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

.thank-you-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #38a169, #48bb78);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    animation: pulse 2s infinite;
}

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

.thank-you-content h1 {
    font-size: 3rem;
    color: #2d7738;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thank-you-details {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    text-align: left;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    color: #38a169;
    font-size: 1.2rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.additional-info {
    padding: 5rem 0;
    background: white;
}

.additional-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

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

.info-card {
    text-align: center;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

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

.info-card i {
    font-size: 3rem;
    color: #38a169;
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 1rem;
    color: #2d3748;
}

.info-card a {
    color: #38a169;
    font-weight: 600;
}

.newsletter-thankyou {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    padding: 5rem 0;
    background: white;
}

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

.legal-document .section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.legal-document .section:last-child {
    border-bottom: none;
}

.legal-document h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
    font-size: 1.5rem;
}

.legal-document h2 i {
    color: #38a169;
}

.legal-document h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #38a169;
}

.legal-document ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.company-details,
.contact-details {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
}

.company-details p,
.contact-details p {
    margin-bottom: 0.5rem;
}

.company-details p:last-child,
.contact-details p:last-child {
    margin-bottom: 0;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    color: white;
    padding: 1.5rem 0;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content i {
    font-size: 2rem;
    color: #ffd700;
}

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

.cookie-text h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: #cbd5e0;
    margin: 0;
    font-size: 0.9rem;
}

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

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.cookie-controls {
    margin: 2rem 0;
    text-align: center;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

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

.cookie-modal-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.cookie-category {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.cookie-category-header {
    background: #f7fafc;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.cookie-category-header h4 {
    margin: 0;
    color: #2d3748;
}

.cookie-toggle {
    width: 50px;
    height: 25px;
    background: #e2e8f0;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle.active {
    background: #38a169;
}

.cookie-toggle::after {
    content: '';
    width: 21px;
    height: 21px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
    transform: translateX(25px);
}

.cookie-category-content {
    padding: 1rem;
    display: none;
}

.cookie-category.active .cookie-category-content {
    display: block;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .hero-buttons,
    .thank-you-actions,
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
    }

    .timeline-year {
        left: 20px;
        transform: none;
    }

    .timeline-icon {
        left: 20px;
        transform: none;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-header h2,
    .values h2,
    .team h2,
    .impact h2,
    .timeline h2,
    .milestones h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .feature-icon,
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .article-image-placeholder {
        height: 200px;
        font-size: 3rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .milestone-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .thank-you-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }

    .cookie-modal {
        padding: 1rem;
    }

    .cookie-modal-content {
        padding: 1.5rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-top: 2px solid #38a169;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
*:focus {
    outline: 2px solid #38a169;
    outline-offset: 2px;
}

button:focus,
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #38a169;
    outline-offset: 2px;
}

/* ===== COMPACT NEWSLETTER STYLES ===== */
.newsletter-compact {
    background: linear-gradient(135deg, #f0fff4, #e6fffa);
    padding: 4rem 0;
    border-top: 1px solid #c6f6d5;
    border-bottom: 1px solid #c6f6d5;
}

.newsletter-compact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-icon {
    font-size: 3rem;
    color: #38a169;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(56, 161, 105, 0.1);
}

.newsletter-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e2d;
}

.newsletter-text p {
    color: #4a5568;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.newsletter-compact-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 280px;
}

.newsletter-compact-form input {
    border: none;
    background: transparent;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    flex: 1;
    outline: none;
}

.newsletter-compact-form input::placeholder {
    color: #a0aec0;
}

.btn-compact {
    background: linear-gradient(135deg, #38a169, #48bb78);
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(56, 161, 105, 0.3);
}

.btn-compact:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(56, 161, 105, 0.4);
}

/* ===== COMPACT CONTACT PAGE STYLES ===== */
.contact-hero-compact {
    background: linear-gradient(135deg, #f0fff4, #e6fffa);
    padding: 4rem 0;
    text-align: center;
}

.contact-hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e2d;
}

.contact-hero-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 0;
}

.contact-hero-icon {
    font-size: 4rem;
    color: #38a169;
    opacity: 0.8;
}

.contact-compact {
    padding: 4rem 0;
    background: white;
}

.contact-compact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e6fffa;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #c6f6d5;
}

.contact-card-icon {
    font-size: 2.5rem;
    color: #38a169;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e2d;
}

.contact-card p {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.contact-card-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #38a169, #48bb78);
    color: white;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card-btn:hover {
    background: linear-gradient(135deg, #2d7738, #38a169);
    transform: translateY(-1px);
    color: white;
}

.contact-form-compact {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e6fffa;
}

.contact-form-compact h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e2d;
}

.form-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-compact input,
.form-compact select,
.form-compact textarea {
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    background: white;
    transition: border-color 0.3s ease;
}

.form-compact input:focus,
.form-compact select:focus,
.form-compact textarea:focus {
    border-color: #38a169;
    outline: none;
}

.checkbox-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #4a5568;
}

.checkbox-compact input {
    width: auto;
    margin: 0;
}

.btn-submit-compact {
    background: linear-gradient(135deg, #38a169, #48bb78);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit-compact:hover {
    background: linear-gradient(135deg, #2d7738, #38a169);
    transform: translateY(-1px);
}

.faq-compact {
    background: #f7fafc;
    padding: 3rem 0;
}

.faq-compact h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e2d;
}

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

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #38a169;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2c3e2d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item h3 i {
    color: #38a169;
}

.faq-item p {
    font-size: 0.85rem;
    color: #4a5568;
    margin-bottom: 0;
    line-height: 1.5;
}

/* ===== COMPACT BLOG STYLES ===== */
.blog-hero-compact {
    background: linear-gradient(135deg, #f0fff4, #e6fffa);
    padding: 4rem 0;
}

.blog-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e2d;
}

.blog-hero-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 0;
}

.blog-hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #38a169;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #4a5568;
    margin-top: 0.25rem;
}

.blog-compact {
    padding: 4rem 0;
    background: white;
}

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

.article-compact {
    background: #f8fffe;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e6fffa;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #c6f6d5;
}

.article-compact-icon {
    font-size: 2.5rem;
    color: #38a169;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    border: 2px solid #e6fffa;
}

.article-compact-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.date {
    background: #38a169;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 500;
}

.category {
    color: #4a5568;
    font-style: italic;
}

.article-compact h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.article-compact h3 a {
    color: #2c3e2d;
    text-decoration: none;
}

.article-compact h3 a:hover {
    color: #38a169;
}

.article-compact p {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 1rem;
    flex: 1;
    line-height: 1.5;
}

.read-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #38a169;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-link:hover {
    color: #2d7738;
    transform: translateX(3px);
}

.newsletter-blog-compact {
    background: linear-gradient(135deg, #2c3e2d, #38a169);
    padding: 3rem 0;
    color: white;
}

.newsletter-blog-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-blog-text h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.newsletter-blog-text p {
    color: #c6f6d5;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.newsletter-blog-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    min-width: 250px;
}

.newsletter-blog-form input {
    border: none;
    background: transparent;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    flex: 1;
    outline: none;
    color: white;
}

.newsletter-blog-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-blog-compact {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-blog-compact:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* ===== RESPONSIVE DESIGN FOR COMPACT STYLES ===== */
@media (max-width: 768px) {
    .newsletter-compact-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .newsletter-compact-form {
        min-width: 250px;
    }
    
    .contact-hero-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-compact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row-compact {
        grid-template-columns: 1fr;
    }
    
    .blog-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .blog-hero-stats {
        justify-content: center;
    }
    
    .newsletter-blog-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .newsletter-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .contact-hero-icon {
        font-size: 3rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== COMPACT THANK YOU PAGE STYLES ===== */
.thanks-hero-compact {
    background: linear-gradient(135deg, #f0fff4, #e6fffa);
    padding: 6rem 0;
    text-align: center;
}

.thanks-hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-hero-icon {
    font-size: 5rem;
    color: #38a169;
    animation: checkmark 0.8s ease-in-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thanks-hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e2d;
}

.thanks-hero-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 0;
    line-height: 1.6;
}

.thanks-info-compact {
    padding: 4rem 0;
    background: white;
}

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

.thanks-info-card {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e6fffa;
    transition: all 0.3s ease;
}

.thanks-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #c6f6d5;
}

.thanks-info-card .info-icon {
    font-size: 2.5rem;
    color: #38a169;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    border: 2px solid #e6fffa;
    margin: 0 auto 1rem auto;
}

.thanks-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e2d;
}

.thanks-info-card p {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 0;
    line-height: 1.5;
}

.thanks-actions-compact {
    background: #f7fafc;
    padding: 4rem 0;
}

.actions-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e2d;
    font-size: 2rem;
}

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

.action-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: block;
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #38a169;
}

.action-card .action-icon {
    font-size: 3rem;
    color: #38a169;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0fff4, #e6fffa);
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.action-card:hover .action-icon {
    background: linear-gradient(135deg, #38a169, #48bb78);
    color: white;
}

.action-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c3e2d;
}

.action-card p {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 0;
    line-height: 1.5;
}

.thanks-social-compact {
    background: linear-gradient(135deg, #2c3e2d, #38a169);
    padding: 3rem 0;
    color: white;
    text-align: center;
}

.social-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: white;
}

.social-content p {
    color: #c6f6d5;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.social-links-compact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link-compact:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

.social-link-compact i {
    font-size: 1.2rem;
}

.social-link-compact span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== RESPONSIVE DESIGN FOR THANK YOU PAGE ===== */
@media (max-width: 768px) {
    .thanks-hero-compact {
        padding: 4rem 0;
    }
    
    .thanks-hero-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .thanks-hero-icon {
        font-size: 4rem;
    }
    
    .thanks-hero-text h1 {
        font-size: 2rem;
    }
    
    .thanks-info-grid {
        grid-template-columns: 1fr;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links-compact {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link-compact {
        min-width: 150px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .thanks-hero-compact {
        padding: 3rem 0;
    }
    
    .thanks-hero-text h1 {
        font-size: 1.8rem;
    }
    
    .thanks-info-card {
        padding: 1.5rem;
    }
    
    .action-card {
        padding: 2rem;
    }
    
    .action-card .action-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
}
