body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header h1 {
    margin: 0 0 1rem 0;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0 10px;
}

nav a:hover {
    text-decoration: underline;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.about {
    margin-top: 2rem;
}

.about-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-section h3 {
    color: #2c3e50;
    margin-top: 0;
}

.about-section p {
    color: #555;
    margin-bottom: 0;
}

.about-section ul {
    padding-left: 1.5rem;
    margin-top: 1rem;
    list-style: none;
}

.about-section ul li {
    margin-bottom: 1.2rem; /* More space between points */
    position: relative;
    padding-left: 0.5rem;
}

.about-section ul li:before {
    content: "•";
    color: #3498db; /* Blue bullet */
    font-size: 1.5em; /* Larger bullet */
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
    top: 0;
}

.farmer-benefits-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.farmer-benefits-list li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 0.5rem;
    font-size: 1.25rem;
    color: #2c3e50;
}

.farmer-benefits-list li:before {
    content: "•";
    color: #3498db;
    font-size: 1.5em;
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
    top: 0.1em;
}

.farmer-benefits-process {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
}

.farmer-benefits-process-wrapper {
    padding: 2rem 1.5rem;
    background: #fff;
    border-left: 4px solid #3498db; /* Blue line for the whole section */
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.farmer-benefits-process-wrapper h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.benefit-process-list {
    margin-top: 0;
}

.benefit-process-item {
    display: flex;
    align-items: flex-start;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.benefit-number {
    background-color: #3498db;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.benefit-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start; /* instead of space-between */
}

.benefit-title {
    font-weight: bold;
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: block;
}

.benefit-desc {
    color: #555;
    font-size: 1.1rem;
    display: block;
}

.consumer-benefits-process-wrapper {
    padding: 2rem 1.5rem;
    background: #fff;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.benefit-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
    flex-grow: 0;
    display: block;
}

.benefit-text {
    display: flex;
    flex-direction: column;
}