/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF8C00;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    max-width: 180px;
}

.logo i {
    font-size: 2rem;
}

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

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

.nav-links a:hover {
    color: #FF8C00;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    gap: 4rem;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.08) 0%, 
        rgba(129, 199, 132, 0.06) 25%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(34, 139, 34, 0.05) 75%,
        rgba(255, 140, 0, 0.08) 100%
    );
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(129, 199, 132, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-content,
.hero-image {
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
    padding-top: 2rem;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: left;
    letter-spacing: -0.02em;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-subtitle {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #FF8C00, #FF6B35);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-align: left;
    font-weight: 400;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #01875f, #228B22);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(1, 135, 95, 0.3);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(1, 135, 95, 0.4);
}

.download-btn.ios {
    background: linear-gradient(135deg, #000, #333);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.download-btn.ios:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.download-btn.android {
    background: linear-gradient(135deg, #01875f, #228B22);
}

.download-btn i {
    font-size: 1.5rem;
}

.download-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.download-btn small {
    font-size: 0.8rem;
    opacity: 0.8;
}

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

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat strong {
    font-size: 2rem;
    color: #FF8C00;
    font-weight: bold;
}

.stat span {
    font-size: 0.9rem;
    color: #666;
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-app-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-app-image img {
    max-width: 300px;
    height: auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

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

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

.feature-card i {
    font-size: 3rem;
    color: #FF8C00;
    margin-bottom: 1rem;
}

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

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

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0.8) 100%);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}

.about p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.about ul {
    list-style: none;
    margin-top: 2rem;
}

.about li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 0.75rem 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.about li:hover {
    background: rgba(255, 140, 0, 0.05);
    padding-left: 1rem;
}

.about li i {
    color: #FF8C00;
    font-size: 1.2rem;
    background: rgba(255, 140, 0, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FF8C00, #81C784);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

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

.business-type {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.business-type i {
    font-size: 3rem;
    color: #FF8C00;
    margin-bottom: 1rem;
}

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

.business-type ul {
    list-style: none;
    padding: 0;
}

.business-type li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #666;
    font-size: 1rem;
}

.business-type li i {
    font-size: 1rem;
    color: #FF8C00;
    margin: 0;
}

.key-benefits h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

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

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

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

.benefit-card i {
    font-size: 3rem;
    color: #FF8C00;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

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

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF8C00, #81C784);
    color: white;
    text-align: center;
}

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

/* Refund Policy Styles */
.highlight-box {
    background: #fff8e1;
    border-left: 4px solid #FF8C00;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-box i {
    font-size: 1.5rem;
    color: #FF8C00;
}

.process-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.step-number {
    background: #FF8C00;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

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

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

.timeline-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.timeline-item i {
    font-size: 2rem;
    color: #FF8C00;
}

.timeline-item h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.timeline-item p {
    margin: 0;
    color: #666;
    font-weight: bold;
}

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

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-method i {
    font-size: 3rem;
    color: #FF8C00;
    margin-bottom: 1rem;
}

.contact-method h4 {
    margin: 0 0 1rem 0;
    color: #333;
}

.contact-method p {
    margin: 0.5rem 0;
    color: #666;
}

.contact-method small {
    color: #999;
    font-size: 0.9rem;
}

.contact-method a {
    color: #FF8C00;
    text-decoration: none;
    font-weight: bold;
}

.contact-method a:hover {
    text-decoration: underline;
}

.note-box {
    background: #f0f8ff;
    border: 1px solid #ddeeff;
    border-radius: 10px;
    padding: 2rem;
    margin: 1.5rem 0;
}

.note-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.note-box li {
    margin-bottom: 0.8rem;
    color: #444;
    line-height: 1.6;
}

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

/* Footer */
.footer {
    background: #228B22;
    color: white;
    padding: 60px 0 20px;
}

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

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

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #FF8C00;
}

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

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    opacity: 0.7;
}

/* Page Styles */
.contact-page,
.about-page,
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.page-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 2rem;
    color: #333;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #FF8C00;
    margin-top: 0.5rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.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: 0.75rem;
    border: 2px solid #e0e0e0;
    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: #FF8C00;
}

.submit-btn {
    background: #FF8C00;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #45a049;
}

/* WhatsApp Section */
.whatsapp-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.whatsapp-section h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: white;
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

/* About Page Styles */
.about-page {
    padding: 120px 0 80px 0;
    min-height: 100vh;
}

.about-page h1 {
    font-size: 3rem;
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
}

.page-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 4rem;
}

.about-hero {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-text {
    flex: 1.5;
}

.about-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.about-hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.farmers-connect-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(129, 199, 132, 0.05) 0%, rgba(255, 140, 0, 0.03) 100%);
    border-radius: 20px;
}

.farmers-connect-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2e7d32;
    text-align: center;
}

.farmers-connect-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.farmers-connect-text {
    flex: 2;
}

.farmers-connect-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.farmers-connect-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.story-section,
.values-section,
.team-section {
    margin-bottom: 4rem;
}

.story-section h2,
.values-section h2,
.team-section h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.story-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

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

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

.impact-stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.impact-stat strong {
    display: block;
    font-size: 2.5rem;
    color: #FF8C00;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.impact-stat span {
    color: #666;
    font-size: 1rem;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
}

.cta-section h2 {
    margin-bottom: 1rem;
    color: #333;
}

.cta-section p {
    color: #666;
    margin-bottom: 2rem;
}

.cta-section .download-buttons {
    justify-content: center;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.legal-section h2 {
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #FF8C00;
```
}

.legal-section h3 {
    color: #333;
    margin: 1.5rem 0 1rem;
}

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

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* FAQ Page */
.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-section h2 {
    color: #333;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #FF8C00;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #FF8C00;
}

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

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Careers Page */
.careers-hero {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.careers-text {
    flex: 1;
}

.careers-image {
    flex: 1;
}

.careers-hero h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.careers-hero p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.why-famveg-section {
    margin-bottom: 4rem;
}

.why-famveg-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.open-positions-section {
    margin-bottom: 4rem;
}

.open-positions-section h2 {
    margin-bottom: 2rem;
    color: #333;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.position-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #FF8C00;
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.position-header h3 {
    color: #333;
    margin: 0;
    font-size: 1.3rem;
}

.department {
    background: #FF8C00;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.position-details {
    display: flex;
    gap: 2rem;
    color: #888;
    font-size: 0.9rem;
}

.position-details i {
    color: #FF8C00;
    margin-right: 0.5rem;
}

.application-section {
    text-align: center;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
}

.application-section h2 {
    margin-bottom: 1rem;
    color: #333;
}

.application-section p {
    color: #666;
    margin-bottom: 2rem;
}

.application-cta {
    margin-top: 2rem;
}

.apply-btn {
    display: inline-block;
    background: #FF8C00;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: background 0.3s ease;
}

.apply-btn:hover {
    background: #45a049;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF8C00, #FF6B35);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
    background: linear-gradient(135deg, #FF6B35, #FF8C00);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 1rem 2rem;
    }

    .hero h1 {
        font-size: 2.2rem;        line-height: 1.2;
    }

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

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

    .hero {
        background: linear-gradient(135deg, 
            rgba(255, 140, 0, 0.1) 0%, 
            rgba(129, 199, 132, 0.08) 25%,
            rgba(255, 255, 255, 0.95) 50%,
            rgba(34, 139, 34, 0.06) 75%,
            rgba(255, 140, 0, 0.1) 100%
        );
        padding: 100px 1.5rem 2rem;
        border-radius: 20px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

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

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

    .about li {
        justify-content: center;
        text-align: left;
        margin-bottom: 0.8rem;
    }

    .market-stats {
        gap: 2rem;
    }

    .market-stat h3 {
        font-size: 2rem;
    }

    .stats {
        justify-content: center;
        gap: 1rem;
    }

    .download-buttons {
        justify-content: center;
    }

    .mobile-app-image img {
        max-width: 250px;
    }

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

    .about-hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .farmers-connect-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .farmers-connect-section {
        padding: 2rem 1.5rem;
    }

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

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .nav {
        padding: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .features h2,
    .about h2,
    .benefits h2,
    .cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .careers-hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .careers-hero h2 {
        font-size: 2rem;
    }

    .position-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .position-header h3 {
        font-size: 1.1rem;
    }

    .position-details {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .position-card {
        padding: 1.5rem;
    }

    .application-section {
        padding: 2rem 1.5rem;
    }

    .application-section h2 {
        font-size: 1.8rem;
    }

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

    .farmers-connect-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .farmers-connect-section {
        padding: 2rem 1.5rem;
    }

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

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Farmers Connect Page Styles */
.farmers-hero {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.1) 0%, rgba(129, 199, 132, 0.08) 100%);
    padding: 120px 0 80px 0;
}

.farmers-hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.farmers-hero-text {
    flex: 2;
}

.farmers-hero h1 {
    font-size: 3.5rem;
    color: #2e7d32;
    margin-bottom: 1rem;
}

.farmers-hero .hero-subtitle {
    font-size: 1.5rem;
    color: #388e3c;
    margin-bottom: 1.5rem;
}

.farmers-hero .hero-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.farmers-btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.farmers-btn.primary {
    background: #2e7d32;
    color: white;
}

.farmers-btn.primary:hover {
    background: #1b5e20;
    transform: translateY(-2px);
}

.farmers-btn.secondary {
    background: transparent;
    color: #2e7d32;
    border: 2px solid #2e7d32;
}

.farmers-btn.secondary:hover {
    background: #2e7d32;
    color: white;
}

.farmers-hero-image {
    flex: 1;
    text-align: center;
}

.farmers-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.why-join {
    padding: 80px 0;
    background: #f8fdf8;
}

.why-join h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 3rem;
}

.how-it-works {
    padding: 80px 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    background: #2e7d32;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.requirements {
    padding: 80px 0;
    background: #f8fdf8;
}

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

.requirements-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #2e7d32;
}

.requirement-item i {
    color: #2e7d32;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.requirement-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.requirement-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.success-stories {
    padding: 80px 0;
}

.success-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

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

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #2e7d32;
}

.story-content p {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.farmer-info h4 {
    color: #2e7d32;
    margin-bottom: 0.25rem;
}

.farmer-info span {
    color: #888;
    font-size: 0.9rem;
}

.farmer-support {
    padding: 80px 0;
    background: #f8fdf8;
}

.farmer-support h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 3rem;
}

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

.support-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.support-item i {
    color: #2e7d32;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.support-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

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

.farmers-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B35 100%);
    color: white;
    text-align: center;
}

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

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

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

.farmers-cta .farmers-btn.primary {
    background: white;
    color: #2e7d32;
}

.farmers-cta .farmers-btn.primary:hover {
    background: #f5f5f5;
}

.farmers-cta .farmers-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.farmers-cta .farmers-btn.secondary:hover {
    background: white;
    color: #2e7d32;
}

.contact-info {
    margin-top: 2rem;
    opacity: 0.9;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

/* Mobile Responsive */
/* Modern Partners Page Styles */
.modern-partners-hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
}

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

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

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

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.modern-hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #FF8C00, #FFD700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.modern-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-cta-btn.primary {
    background: linear-gradient(135deg, #FF8C00, #FFD700);
    color: #333;
}

.modern-cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.modern-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.modern-cta-btn.primary:hover {
    color: #333;
}

.modern-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.modern-opportunities {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.opportunity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.opportunity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.retail-card:hover {
    border-color: #FF8C00;
}

.property-card:hover {
    border-color: #3498db;
}

.storage-card:hover {
    border-color: #00BCD4;
}

.card-header {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.retail-card .card-header {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 216, 0, 0.05));
}

.property-card .card-header {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(116, 185, 255, 0.05));
}

.storage-card .card-header {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(77, 208, 225, 0.05));
}

.icon-container {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.retail-icon {
    background: linear-gradient(135deg, #FF8C00, #FFD700);
}

.property-icon {
    background: linear-gradient(135deg, #3498db, #74B9FF);
}

.storage-icon {
    background: linear-gradient(135deg, #00BCD4, #4DD0E1);
}

.icon-container i {
    font-size: 2rem;
    color: white;
}

.card-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
}

.roi-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.card-content {
    padding: 0 2rem 2rem;
}

.card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.benefits-list {
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;    transition: all 0.3s ease;
}

.benefit:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.benefit i {
    color: #28a745;
    font-size: 1rem;
    background: rgba(40, 167, 69, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit span {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.requirements {
    margin-bottom: 2rem;
}

.requirements h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.req-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.req-item {
    background: #fff5e6;
    color: #FF8C00;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: white;
}

.retail-cta {
    background: linear-gradient(135deg, #FF8C00, #FFD700);
}

.property-cta {
    background: linear-gradient(135deg, #3498db, #74B9FF);
}

.storage-cta {
    background: linear-gradient(135deg, #00BCD4, #4DD0E1);
}

.card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.success-stories {
    padding: 100px 0;
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.story-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #FF8C00;
    transition: all 0.3s ease;
}

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

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.partner-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF8C00, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.partner-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.partner-info span {
    font-size: 0.9rem;
    color: #666;
}

.growth-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: auto;
}

.story-card p {
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.modern-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

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

.contact-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF8C00, #FFD700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: white;
}

.highlight-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.highlight-text p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.contact-methods {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
}

.primary-contact {
    text-align: center;
    margin-bottom: 3rem;
}

.primary-contact h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Get Started in 3 Simple Steps Styles */
.steps-section {
    background: #f8fdf8;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.steps-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 3rem;
}

.partnership-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.partnership-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: #2e7d32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.step-number {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-info {
    flex: 1;
    padding-top: 0.5rem;
}

.step-info h4 {
    color: #2e7d32;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-info p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.step-connector {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #2e7d32, #81c784);
    margin-left: 29px;
    margin-top: -10px;
    margin-bottom: -10px;
}

.partnership-step:last-child + .step-connector {
    display: none;
}

.steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF8C00, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.step-arrow {
    font-size: 1.5rem;
    color: #FFD700;
    font-weight: 700;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.primary-contact-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 2rem;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.primary-contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: white;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.btn-text {
    text-align: left;
}

.btn-title {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.btn-subtitle {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.primary-contact-btn i:last-child {
    font-size: 1.5rem;
    opacity: 0.8;
}

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

.alt-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.alt-contact i {
    font-size: 1.5rem;
    color: #FFD700;
}

.alt-contact div {
    display: flex;
    flex-direction: column;
}

.alt-contact strong {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.alt-contact span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-item i {
    font-size: 1.1rem;
    color: #FFD700;
}

/* Mobile Responsive for Modern Partners Page */
@media (max-width: 1200px) {
    .opportunities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .opportunities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .modern-hero-title {
        font-size: 3rem;
    }

    .title-highlight {
        font-size: 3.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

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

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

    .card-header {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.6rem;
    }

    .icon-container {
        width: 70px;
        height: 70px;
    }

    .icon-container i {
        font-size: 1.8rem;
    }

    .card-content {
        padding: 0 1.5rem 2rem;
    }

    .card-cta {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .modern-partners-hero {
        padding: 100px 0 60px;
    }

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

    .title-highlight {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

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

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .modern-cta-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }

    .modern-opportunities {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .opportunities-grid {
        margin: 0 1rem;
    }

    .opportunity-card {
        margin-bottom: 1rem;
    }

    .card-header {
        padding: 1.5rem 1rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .icon-container i {
        font-size: 1.5rem;
    }

    .card-content {
        padding: 0 1rem 1.5rem;
    }

    .card-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .benefit {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
    }

    .benefit span {
        font-size: 0.85rem;
    }

    .req-list {
        justify-content: center;
    }

    .req-item {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .card-cta {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .success-stories {
        padding: 80px 0;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 1rem;
    }

    .story-card {
        padding: 1.5rem;
    }

    .story-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .partner-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .partner-info h4 {
        font-size: 1rem;
    }

    .partner-info span {
        font-size: 0.8rem;
    }

    .growth-badge {
        margin: 0.5rem 0;
        font-size: 0.75rem;
    }

    .modern-contact {
        padding: 80px 0;
    }

    .contact-wrapper {
        margin: 0 1rem;
    }

    .contact-content h2 {
        font-size: 2.5rem;
    }

    .contact-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .contact-features {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .feature {
        justify-content: center;
        font-size: 0.85rem;
    }

    .contact-wrapper {
        margin: 0 1rem;
    }

    .contact-header h2 {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }

    .partnership-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .highlight-item {
        padding: 1.25rem;
    }

    .highlight-icon {
        width: 45px;
        height: 45px;
    }

    .highlight-icon i {
        font-size: 1.3rem;
    }

    .highlight-text h4 {
        font-size: 1rem;
    }

    .highlight-text p {
        font-size: 0.85rem;
    }

    .contact-methods {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .primary-contact h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .steps-row {
        flex-direction: column;
        gap: 1rem;
    }

    .step-arrow {
        transform: rotate(90deg);
        font-size: 1.2rem;
    }

    .contact-step span {
        font-size: 0.9rem;
        text-align: center;
    }

    .step-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .primary-contact-btn {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .btn-content {
        flex-direction: column;
        gap: 1rem;
    }

    .whatsapp-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .btn-text {
        text-align: center;
    }

    .btn-title {
        font-size: 1.2rem;
    }

    .btn-subtitle {
        font-size: 0.85rem;
    }

    .primary-contact-btn i:last-child {
        font-size: 1.2rem;
    }

    .alternative-contacts {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .alt-contact {
        padding: 1.25rem;
    }

    .alt-contact i {
        font-size: 1.3rem;
    }

    .alt-contact strong {
        font-size: 0.95rem;
    }

    .alt-contact span {
        font-size: 0.85rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .trust-item {
        justify-content: center;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .farmers-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .farmers-hero h1 {
        font-size: 2.5rem;
    }

    .farmers-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .farmers-hero .hero-description {
        font-size: 1rem;
    }

    .farmers-cta-buttons {
        justify-content: center;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .requirements-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .requirement-item {
        flex-direction: column;
        text-align: center;
    }

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

    .farmers-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}