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

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

/* Header and Navigation */
.navbar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    color: #2d5016;
    font-size: 28px;
    font-weight: 700;
}

.logo span {
    color: #6b8e23;
    font-size: 14px;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
    margin-left: 30px;
}

.nav-link {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2d5016;
    background-color: #e8f5e8;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 150px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu .nav-link {
    display: block;
    padding: 8px 20px;
    margin: 0;
}

/* Main Content */
#content-area {
    min-height: calc(100vh - 160px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

#content-area > * {
    max-width: 100%;
}

/* Common Page Styles */
.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 42px;
    color: #2d5016;
    margin-bottom: 10px;
    font-weight: 300;
}

.page-subtitle {
    font-size: 18px;
    color: #6b8e23;
    font-weight: 400;
}

.hero-section {
    background: linear-gradient(135deg, #f8fdf8 0%, #ffffff 100%);
    padding: 60px 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid #e8f5e8;
}

.hero-section.hero-enhanced {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.8) 0%, rgba(107, 142, 35, 0.6) 100%), url('https://images.unsplash.com/photo-1500595046743-cd271d694d30?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
    position: relative;
    overflow: hidden;
    border: none;
    color: white;
}

#content-area .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.1) 0%, rgba(107, 142, 35, 0.05) 100%);
}

#content-area .hero-content {
    position: relative;
    z-index: 2;
}

#content-area .hero-content h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

#content-area .hero-content p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hero-title {
    font-size: 48px;
    color: #2d5016;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-text {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(135deg, #6b8e23 0%, #5a7a1f 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 142, 35, 0.3);
}

/* Enhanced Home Page Styles */
#content-area .features-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf8 50%, #ffffff 100%);
    padding: 60px 40px;
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(107, 142, 35, 0.1);
}

#content-area .features-header {
    text-align: center;
    margin-bottom: 50px;
}

#content-area .features-title {
    color: #2d5016;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 300;
}

#content-area .features-subtitle {
    color: #6b8e23;
    font-size: 18px;
}

#content-area .feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

#content-area .feature-row:last-child {
    margin-bottom: 0;
}

#content-area .feature-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

#content-area .feature-content h3 {
    color: #2d5016;
    font-size: 28px;
    margin-bottom: 20px;
}

#content-area .feature-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

#content-area .feature-list {
    color: #666;
    margin-left: 20px;
}

#content-area .feature-list li {
    margin-bottom: 8px;
}

#content-area .feature-reverse .feature-image {
    order: 2;
}

#content-area .feature-reverse .feature-content {
    order: 1;
}

#content-area .products-showcase {
    margin-top: 50px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 253, 248, 0.9) 100%), url('https://images.unsplash.com/photo-1516467508483-a7212febe31a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

#content-area .products-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, rgba(107, 142, 35, 0.03) 100%);
}

#content-area .products-content {
    position: relative;
    z-index: 2;
}

#content-area .products-title {
    color: #2d5016;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 300;
}

#content-area .products-description {
    color: #555;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#content-area .products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

#content-area .product-card {
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    text-align: center;
}

#content-area .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

#content-area .vaccine-image-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f8fdf8 0%, #ffffff 100%);
    border: 2px solid #e8f5e8;
    border-radius: 15px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b8e23;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#content-area .product-card h3 {
    color: #2d5016;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 600;
}

#content-area .cta-section {
    margin-top: 50px;
    background: linear-gradient(135deg, #2d5016 0%, #1a3009 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#content-area .cta-decoration-1 {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

#content-area .cta-decoration-2 {
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 1;
}

#content-area .cta-content {
    position: relative;
    z-index: 2;
}

#content-area .cta-title {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 300;
}

#content-area .cta-text {
    margin-bottom: 30px;
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#content-area .cta-button-large {
    background: linear-gradient(135deg, #6b8e23 0%, #5a7a1f 100%);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

#content-area .cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 142, 35, 0.4);
}

/* Enhanced Product Pages */
#content-area .product-hero {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.8) 0%, rgba(107, 142, 35, 0.6) 100%), url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
    color: white;
    padding: 80px 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#content-area .product-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

#content-area .product-hero h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

#content-area .product-hero p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

#content-area .product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 60px 0;
    align-items: center;
}

#content-area .product-visual {
    text-align: center;
    background: linear-gradient(135deg, #f8fdf8 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

#content-area .vaccine-vial {
    width: 200px;
    height: 300px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f0 100%);
    border: 3px solid #6b8e23;
    border-radius: 15px;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(107, 142, 35, 0.3);
    position: relative;
}

#content-area .vaccine-vial::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 60px;
    height: 15px;
    background: #2d5016;
    border-radius: 10px;
}

#content-area .vaccine-label {
    background: #2d5016;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
}

#content-area .product-details {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

#content-area .product-details h2 {
    color: #2d5016;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 300;
}

#content-area .product-details .subtitle {
    color: #6b8e23;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 500;
}

#content-area .product-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
}

#content-area .benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 4px solid #6b8e23;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#content-area .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

#content-area .benefit-card h3 {
    color: #2d5016;
    margin-bottom: 15px;
    font-size: 20px;
    display: flex;
    align-items: center;
}

#content-area .benefit-card h3::before {
    content: '✓';
    background: #6b8e23;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
    font-weight: bold;
}

#content-area .specifications-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

#content-area .spec-item {
    background: #f8fdf8;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e8f5e8;
}

#content-area .spec-item .spec-label {
    color: #6b8e23;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

#content-area .spec-item .spec-value {
    color: #2d5016;
    font-size: 16px;
    font-weight: 600;
}

#content-area .safety-notice {
    background: linear-gradient(135deg, #fff8f0 0%, #fef5e7 100%);
    border: 1px solid #f0d9b5;
    border-left: 4px solid #d4b896;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

#content-area .safety-notice h3 {
    color: #8b7355;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

#content-area .safety-notice h3::before {
    content: '⚠️';
    margin-right: 10px;
    font-size: 20px;
}

#content-area .application-showcase {
    background: linear-gradient(135deg, rgba(248, 253, 248, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%), url('https://images.unsplash.com/photo-1548550023-2bdb3c5beed7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
    padding: 60px 40px;
    border-radius: 20px;
    margin: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#content-area .application-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, rgba(107, 142, 35, 0.03) 100%);
}

#content-area .application-content {
    position: relative;
    z-index: 2;
}

#content-area .application-content h3 {
    color: #2d5016;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 300;
}

#content-area .efficacy-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#content-area .stat-item {
    text-align: center;
}

#content-area .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #6b8e23;
    display: block;
}

#content-area .stat-label {
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}

/* Enhanced Company Page Styles */
#content-area .company-hero {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.8) 0%, rgba(107, 142, 35, 0.6) 100%), url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
    color: white;
    padding: 80px 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#content-area .company-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

#content-area .company-hero h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

#content-area .company-hero p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

#content-area .company-intro {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 50px;
    text-align: center;
}

#content-area .intro-content h2 {
    color: #2d5016;
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 300;
}

#content-area .intro-content p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#content-area .mission-vision-section {
    margin: 50px 0;
}

#content-area .mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

#content-area .mission-card,
#content-area .vision-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
}

#content-area .mission-card {
    border-left: 6px solid #6b8e23;
}

#content-area .vision-card {
    border-left: 6px solid #5a7a1f;
}

#content-area .card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

#content-area .mission-card h3,
#content-area .vision-card h3 {
    color: #2d5016;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

#content-area .mission-card p,
#content-area .vision-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

#content-area .values-section {
    background: linear-gradient(135deg, #f8fdf8 0%, #ffffff 100%);
    padding: 60px 40px;
    border-radius: 20px;
    margin: 50px 0;
}

#content-area .values-header {
    text-align: center;
    margin-bottom: 50px;
}

#content-area .values-header h2 {
    color: #2d5016;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 300;
}

#content-area .values-header p {
    color: #6b8e23;
    font-size: 18px;
}

#content-area .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

#content-area .value-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#content-area .value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

#content-area .value-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

#content-area .value-item h4 {
    color: #2d5016;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

#content-area .value-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

#content-area .capabilities-section {
    margin: 50px 0;
}

#content-area .capabilities-header {
    text-align: center;
    margin-bottom: 50px;
}

#content-area .capabilities-header h2 {
    color: #2d5016;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 300;
}

#content-area .capabilities-header p {
    color: #6b8e23;
    font-size: 18px;
}

#content-area .capabilities-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#content-area .capability-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

#content-area .capability-reverse {
    direction: rtl;
}

#content-area .capability-reverse .capability-content {
    direction: ltr;
}

#content-area .capability-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

#content-area .capability-content h3 {
    color: #2d5016;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

#content-area .capability-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

#content-area .capability-content ul {
    color: #666;
    margin-left: 20px;
}

#content-area .capability-content li {
    margin-bottom: 8px;
}

#content-area .global-impact-section {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.95) 0%, rgba(107, 142, 35, 0.9) 100%), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
    padding: 80px 40px;
    border-radius: 20px;
    margin: 50px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

#content-area .impact-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

#content-area .impact-content > p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

#content-area .impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 40px 0;
}

#content-area .impact-stat {
    text-align: center;
}

#content-area .impact-stats .stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    color: white;
}

#content-area .impact-stats .stat-label {
    font-size: 16px;
    opacity: 0.9;
    color: white;
}

#content-area .impact-description {
    margin-top: 40px;
}

#content-area .impact-description p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

#content-area .commitment-section {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin: 50px 0;
    text-align: center;
}

#content-area .commitment-content h2 {
    color: #2d5016;
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 300;
}

#content-area .commitment-content > p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#content-area .commitment-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

#content-area .pillar {
    background: #f8fdf8;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #6b8e23;
}

#content-area .pillar h4 {
    color: #2d5016;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

#content-area .pillar p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Legacy and Contact Styles */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: #f8fdf8;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #6b8e23;
}

.info-card h3 {
    color: #2d5016;
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6b8e23;
}

.contact-info {
    background: #f8fdf8;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #6b8e23;
}

.contact-item {
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-item h4 {
    color: #2d5016;
    margin-bottom: 5px;
}

/* Legacy Product Styles */
.vaccine-placeholder {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    border: 2px solid #6b8e23;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b8e23;
    font-weight: bold;
    margin: 0 auto;
}

.chickens-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #fff8f0 0%, #f5f0e8 100%);
    border: 2px solid #d4b896;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b7355;
    font-weight: bold;
    margin: 20px auto;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.product-image {
    text-align: center;
}

.product-info {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.product-title {
    font-size: 32px;
    color: #2d5016;
    margin-bottom: 15px;
}

.product-subtitle {
    font-size: 18px;
    color: #6b8e23;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #2d5016;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .nav-menu {
        margin-top: 20px;
        flex-direction: column;
        width: 100%;
    }

    .nav-menu li {
        margin: 5px 0;
    }

    .product-container,
    .contact-grid,
    .info-grid,
    .feature-row,
    .products-grid,
    #content-area .product-showcase,
    #content-area .product-benefits,
    #content-area .specifications-grid,
    #content-area .efficacy-stats,
    #content-area .mission-vision-grid,
    #content-area .values-grid,
    #content-area .capability-card,
    #content-area .impact-stats,
    #content-area .commitment-pillars {
        grid-template-columns: 1fr;
    }

    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }

    #content-area .impact-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    #content-area .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #content-area .commitment-pillars {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-title,
    .features-title,
    .products-title,
    #content-area .product-hero h1,
    #content-area .company-hero h1 {
        font-size: 28px;
    }

    .cta-title {
        font-size: 24px;
    }

    #content-area {
        padding: 20px 10px;
    }

    .features-section,
    .products-showcase,
    .cta-section,
    #content-area .product-hero,
    #content-area .application-showcase,
    #content-area .company-hero,
    #content-area .company-intro,
    #content-area .values-section,
    #content-area .global-impact-section,
    #content-area .commitment-section {
        padding: 40px 20px;
    }

    .feature-row {
        gap: 30px;
        margin-bottom: 30px;
    }

    .feature-reverse .feature-image,
    .feature-reverse .feature-content {
        order: unset;
    }

    #content-area .vaccine-vial,
    #content-area .vaccine-image-placeholder {
        width: 150px;
        height: 225px;
    }

    #content-area .product-benefits {
        gap: 20px;
    }

    #content-area .benefit-card {
        padding: 25px;
    }

    #content-area .specifications-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    #content-area .efficacy-stats {
        grid-template-columns: 1fr 1fr;
        padding: 30px 20px;
        gap: 20px;
    }

    #content-area .stat-number {
        font-size: 28px;
    }

    #content-area .impact-stats .stat-number {
        font-size: 32px;
    }

    #content-area .capability-card {
        padding: 30px 20px;
        gap: 30px;
    }

    #content-area .capability-image {
        height: 250px;
    }

    #content-area .capability-reverse {
        direction: ltr;
    }
}