.companies {
    width: 80%;
    margin: 0 auto;
}

.company-card {
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    box-shadow: 0px 2px 8px 1px rgba(15, 53, 85, 0.1);
    padding: 1.5rem;
    justify-content: flex-start;
    font-size: 14px;
    margin-bottom: 30px;
    gap: 10px;
}

.company-title h4 {
    font-size: 1.5em;
}

.company-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.company-image {
    width: 150px;
    height: 150px;
    border: 1px solid #F0F5FA;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-image img {
    width: 150px;
}

.company-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.fields-row {
    display: flex;
    gap: 20px;
}

.field-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.company-cta-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 35%;
}

.check-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-fields span {
    display: flex;
    align-items: center;
}

.check-fields span img {
    margin-right: 5px;
}

.company-buttons {
    display: flex;
    gap: 5px;
}

.company-btn {
    text-decoration: none;
    padding: 20px;
    border-radius: 10px;
}

.company-buttons a {
    text-decoration: none !important;
}

.company-buttons a:hover {
    color: #fff;
}

.green-btn {
    width: 70%;
    background: #09bc8a;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    width: 75%;
}

.green-btn:hover {
    background: #22D4A2;
}

.info-btn {
    background: #172a3a;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Load More Button */
.credit-load-more-wrap {
    display: flex;
    justify-content: center;
    margin: 20px 0 40px;
}

.credit-load-more-btn {
    background: #172a3a;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, opacity 0.3s ease;
}

.credit-load-more-btn:hover {
    background: #09bc8a;
}

@media (max-width: 767px) {
    .companies {
        width: 100%;
    }

    .company-info {
        flex-direction: column;
    }

    .company-image, .company-image img  {
        width: 100%;
    }

    .company-fields {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
    }
    
    .company-fields .fields-row {
        flex-wrap: wrap;
    }
    
    .company-cta-fields {
        width: 100%;
    }
    
    .green-btn {
        width: 100%;
    }
    
    .company-title h4 {
        line-height: 3;
    }

    .credit-load-more-btn {
        width: 100%;
    }
}
