.features-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    text-align: left;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    margin: 15px;
}

.feature-item img {
    max-width: 80px;
    margin-bottom: 20px;
}

.feature-text h3 {
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555;
}

.padding-4 {
    padding: 00px 120px 00px 120px;
}

@media (max-width: 768px) {
    .features-section {
        flex-direction: column;
        text-align: center;
    }

    .feature-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .feature-item img {
        margin-right: 20px;
        margin-bottom: 0;
    }

    .padding-4 {
        padding: 0px;
    }
}

/* ====================================================== */
.section-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
}

.text-content {
    flex: 1;
    padding-right: 20px;
}

.text-content-right {
    flex: 1;
    padding-left: 20px;
}

.text-item {
    margin-bottom: 40px;
}

.text-item h2 {
    font-family: 'EB Garamond', serif;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.text-item p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .section-container {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .text-content-right {
        padding-right: 0;
        margin-top: 20px;
    }

    .image-content img {
        max-width: 80%;
    }
}

/* ================================================ */
.precise-irrigation-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.phone-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup img {
    max-width: 100%;
    height: auto;
}

.text-content-collapse {
    flex: 1.5;
    padding-left: 40px;
}

.text-content-collapse h2 {
    font-family: 'EB Garamond', serif;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.text-content-collapse p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #fff;
    background-color: #006400;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #339d33;
    color: white;
}

.phone-mockup img {
    max-width: 60%;
}

.padding-collapse {
    padding-right: 130px;
}

@media (max-width: 768px) {
    .precise-irrigation-section {
        flex-direction: column;
        text-align: center;
    }

    .text-content-collapse {
        padding-left: 0;
    }

    .cta-button {
        margin-top: 20px;
    }

    .phone-mockup img {
        max-width: 60%;
    }

    .padding-collapse {
        padding-right: 0px;
    }
}

/* ================================================================ */
.custom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.custom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #aaa;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}

.custom-nav-item img {
    max-width: 40px;
    /* Adjust the size as needed */
    margin-bottom: 5px;
    filter: grayscale(100%);
}

.custom-nav-item span {
    color: #aaa;
    /* Gray color for inactive state */
}

.custom-active-item img {
    filter: none;
    /* Remove grayscale filter for active state */
}

.custom-active-item span {
    color: #007bff;
    /* Blue color for active state */
    font-weight: bold;
    position: relative;
}

.custom-active-item span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #007bff;
    /* Blue color for the underline */
    bottom: -5px;
    left: 0;
}

/* ================================================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 40px 0;
}

.news-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.news-item h2 {
    font-family: 'EB Garamond', serif;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.news-description p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.read-more-qs {
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #006400;
    border: 1px solid #006400;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.read-more-qs:hover {
    background-color: #006400;
    color: #fff;
}

.icon-color {
    color: #006400;
}

.icon-color:hover {
    color: #19b419;
}

.see-more-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
}

.see-more-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #006400;
    text-decoration: none;
    font-weight: bold;
    margin: 0 15px;
}

.see-more-link:hover {
    text-decoration: underline;
}

.line {
    display: inline-block;
    width: 400px;
    height: 2px;
    background-color: #888;
}

.form-padding-4 {
    padding: 00px 200px 200px 200px;
}

@media (max-width: 820px) {
    .form-padding-4 {
        padding: 0px;
    }
}

@media (max-width: 768px) {
    .line {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================================================== */
.app-promo-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background: linear-gradient(to right, #a5f94c, #026202);
    color: #fff;
    border-radius: 20px;
}

.phone-mockup {
    flex: 1;
    text-align: center;
}

.phone-mockup img {
    max-width: 40%;
    height: auto;
    border-radius: 20px;
}

.promo-content {
    flex: 1;
    padding-left: 40px;
}

.promo-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.promo-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.promo-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
}

.qr-codes {
    display: flex;
    align-items: center;
}

.qr-codes img {
    max-width: 150px;
    height: auto;
    margin-right: 20px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
}

.download-buttons .btn {
    margin-bottom: 10px;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    background-color: #000;
    color: #fff;
    border-radius: 8px;
    border: none;
}

@media (max-width: 768px) {
    .app-promo-section {
        flex-direction: column;
        text-align: center;
    }

    .promo-content {
        padding-left: 0;
        margin-top: 20px;
    }

    .qr-codes {
        flex-direction: column;
    }

    .qr-codes img {
        margin-bottom: 20px;
    }

    .download-buttons {
        align-items: center;
    }

    .download-buttons .btn {
        width: 100%;
        margin-bottom: 15px;
    }
}